* AT server send data and newline to AT device * * @param format the input format */
| 70 | * @param format the input format |
| 71 | */ |
| 72 | void 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 | /** |
no test coverage detected