| 101 | |
| 102 | #ifdef AT_USING_SERVER |
| 103 | static rt_err_t at_server_console_getchar(struct at_server *server, char *ch, rt_int32_t timeout) |
| 104 | { |
| 105 | *ch = console_getchar(); |
| 106 | return RT_EOK; |
| 107 | } |
| 108 | |
| 109 | static void server_cli_parser(void) |
| 110 | { |
nothing calls this directly
no test coverage detected