| 39 | AT_CMD_EXPORT("ATZ", RT_NULL, RT_NULL, RT_NULL, RT_NULL, atz_exec); |
| 40 | |
| 41 | static at_result_t at_rst_exec(void) |
| 42 | { |
| 43 | at_server_printfln("OK"); |
| 44 | |
| 45 | at_port_reset(); |
| 46 | |
| 47 | return AT_RESULT_NULL; |
| 48 | } |
| 49 | AT_CMD_EXPORT("AT+RST", RT_NULL, RT_NULL, RT_NULL, RT_NULL, at_rst_exec); |
| 50 | |
| 51 | static at_result_t ate_setup(const char *args) |
nothing calls this directly
no test coverage detected