* AT server send data to AT device * * @param format the input format */
| 54 | * @param format the input format |
| 55 | */ |
| 56 | void 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 |
no test coverage detected