| 154 | |
| 155 | #ifdef AT_USING_CLIENT |
| 156 | static char client_getchar(void) |
| 157 | { |
| 158 | char ch; |
| 159 | |
| 160 | rt_sem_take(&client_rx_notice, RT_WAITING_FOREVER); |
| 161 | rt_ringbuffer_getchar(client_rx_fifo, (rt_uint8_t *)&ch); |
| 162 | |
| 163 | return ch; |
| 164 | } |
| 165 | |
| 166 | static void at_client_entry(void *param) |
| 167 | { |
no test coverage detected