MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / huart_timer_isr

Function huart_timer_isr

bsp/bluetrum/libraries/hal_drivers/drv_usart.c:271–280  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

269#ifdef HUART_ENABLE
270rt_section(".irq.huart")
271void 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
282rt_section(".irq.huart")
283void huart_timer_isr(void)

Callers 1

timer0_isrFunction · 0.85

Calls 1

uart1_irq_postFunction · 0.85

Tested by

no test coverage detected