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

Merge pull request #3071 from xfan1024/fix-stm32l0-exti-bug

Fix STM32L0 Series External Interrupt BUG
This commit is contained in:
Bernard Xiong 2019-09-15 09:38:54 +08:00 committed by GitHub
commit 91e1918250
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -636,7 +636,7 @@ void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin)
}
#endif
#if defined(SOC_SERIES_STM32F0) || defined(SOC_SERIES_STM32G0)
#if defined(SOC_SERIES_STM32F0) || defined(SOC_SERIES_STM32G0) || defined(SOC_SERIES_STM32L0)
void EXTI0_1_IRQHandler(void)
{
rt_interrupt_enter();