| 164 | } |
| 165 | |
| 166 | static void at_client_entry(void *param) |
| 167 | { |
| 168 | char ch; |
| 169 | |
| 170 | while(1) |
| 171 | { |
| 172 | ch = client_getchar(); |
| 173 | rt_kprintf("%c", ch); |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | static rt_err_t client_getchar_rx_ind(rt_device_t dev, rt_size_t size) |
| 178 | { |
nothing calls this directly
no test coverage detected