mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-03-27 01:10:20 +08:00
[bsp][stm32] fix LTDC_IRQHandler irq enter bug.
This commit is contained in:
@@ -108,11 +108,11 @@ void HAL_LTDC_LineEventCallback(LTDC_HandleTypeDef *hltdc)
|
||||
|
||||
void LTDC_IRQHandler(void)
|
||||
{
|
||||
rt_enter_critical();
|
||||
rt_interrupt_enter();
|
||||
|
||||
HAL_LTDC_IRQHandler(&LtdcHandle);
|
||||
|
||||
rt_exit_critical();
|
||||
rt_interrupt_leave();
|
||||
}
|
||||
|
||||
rt_err_t stm32_lcd_init(struct drv_lcd_device *lcd)
|
||||
|
||||
Reference in New Issue
Block a user