| 269 | #ifdef HUART_ENABLE |
| 270 | rt_section(".irq.huart") |
| 271 | void huart_timer_isr(void) |
| 272 | { |
| 273 | huart_if_rx_ovflow(); |
| 274 | |
| 275 | if (0 == huart_get_rxcnt()) { |
| 276 | return; |
| 277 | } |
| 278 | |
| 279 | uart1_irq_post(); |
| 280 | } |
| 281 | #else |
| 282 | rt_section(".irq.huart") |
| 283 | void huart_timer_isr(void) |
no test coverage detected