Merge pull request #4814 from Guozhanxin/lcd_fix
[bsp][stm32] fix LTDC_IRQHandler irq enter bug.
This commit is contained in:
commit
06c1d33371
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue