4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-31 22:40:27 +08:00

Merge pull request #4814 from Guozhanxin/lcd_fix

[bsp][stm32] fix LTDC_IRQHandler irq enter bug.
This commit is contained in:
Bernard Xiong 2021-06-21 22:16:25 +08:00 committed by GitHub
commit 06c1d33371
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -108,11 +108,11 @@ void HAL_LTDC_LineEventCallback(LTDC_HandleTypeDef *hltdc)
void LTDC_IRQHandler(void) void LTDC_IRQHandler(void)
{ {
rt_enter_critical(); rt_interrupt_enter();
HAL_LTDC_IRQHandler(&LtdcHandle); HAL_LTDC_IRQHandler(&LtdcHandle);
rt_exit_critical(); rt_interrupt_leave();
} }
rt_err_t stm32_lcd_init(struct drv_lcd_device *lcd) rt_err_t stm32_lcd_init(struct drv_lcd_device *lcd)