未验证 提交 06c1d333 编写于 作者: B Bernard Xiong 提交者: GitHub

Merge pull request #4814 from Guozhanxin/lcd_fix

[bsp][stm32] fix LTDC_IRQHandler irq enter bug.
......@@ -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)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册