| 30 | #endif |
| 31 | |
| 32 | static char console_getchar(void) |
| 33 | { |
| 34 | char ch; |
| 35 | |
| 36 | rt_sem_take(&console_rx_notice, RT_WAITING_FOREVER); |
| 37 | rt_ringbuffer_getchar(console_rx_fifo, (rt_uint8_t *)&ch); |
| 38 | |
| 39 | return ch; |
| 40 | } |
| 41 | |
| 42 | static rt_err_t console_getchar_rx_ind(rt_device_t dev, rt_size_t size) |
| 43 | { |
no test coverage detected