diff options
Diffstat (limited to 'stm/stm32fxxx_it.c')
-rw-r--r-- | stm/stm32fxxx_it.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stm/stm32fxxx_it.c b/stm/stm32fxxx_it.c index 0cece8854f..22f83f8108 100644 --- a/stm/stm32fxxx_it.c +++ b/stm/stm32fxxx_it.c @@ -286,6 +286,7 @@ void EXTI15_10_IRQHandler(void) { // work out if it's A14 that had the interrupt if (EXTI_GetITStatus(EXTI_Line14) != RESET) { led_toggle(PYB_LED_G2); + /* these are needed for CC3000 support extern void SpiIntGPIOHandler(void); extern uint32_t exti14_enabled; extern uint32_t exti14_missed; @@ -296,6 +297,7 @@ void EXTI15_10_IRQHandler(void) { } else { exti14_missed = 1; } + */ EXTI_ClearITPendingBit(EXTI_Line14); //printf("<- EXTI14 done\n"); } |