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
1 changed files with 2 additions and 2 deletions

View File

@ -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)