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

Function at_server_printf

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

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

Source from the content-addressed store, hash-verified

54 * @param format the input format
55 */
56void at_server_printf(const char *format, ...)
57{
58 va_list args;
59
60 va_start(args, format);
61
62 at_vprintf(at_server_local->device, at_server_local->send_buffer, sizeof(at_server_local->send_buffer), format, args);
63
64 va_end(args);
65}
66
67/**
68 * AT server send data and newline to AT device

Callers 2

server_parserFunction · 0.85

Calls 1

at_vprintfFunction · 0.85

Tested by

no test coverage detected