| 29 | AT_CMD_EXPORT("AT", RT_NULL, RT_NULL, RT_NULL, RT_NULL, at_exec); |
| 30 | |
| 31 | static at_result_t atz_exec(void) |
| 32 | { |
| 33 | at_server_printfln("OK"); |
| 34 | |
| 35 | at_port_factory_reset(); |
| 36 | |
| 37 | return AT_RESULT_NULL; |
| 38 | } |
| 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) |
nothing calls this directly
no test coverage detected