MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / at_server_printfln

Function at_server_printfln

components/net/at/src/at_server.c:72–81  ·  view source on GitHub ↗

* AT server send data and newline to AT device * * @param format the input format */

Source from the content-addressed store, hash-verified

70 * @param format the input format
71 */
72void at_server_printfln(const char *format, ...)
73{
74 va_list args;
75
76 va_start(args, format);
77
78 at_vprintfln(at_server_local->device, at_server_local->send_buffer, sizeof(at_server_local->send_buffer), format, args);
79
80 va_end(args);
81}
82
83
84/**

Callers 6

atz_execFunction · 0.85
at_rst_execFunction · 0.85
at_uart_queryFunction · 0.85
at_uart_setupFunction · 0.85
at_server_print_resultFunction · 0.85

Calls 1

at_vprintflnFunction · 0.85

Tested by

no test coverage detected