STM32 F7 - Discovery gpio interrupts do not return to main
Posted on August 28, 2015 at 22:56HI guysI can simply not see why this is not workingvolatile _Bool DitOn = 0;volatile _Bool DahOn = 0;void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin){ BSP_LED_Toggle(LED1); if(HAL_GPIO_ReadPin(GPIOI,GPIO_PIN_2) == GPI...