2014-07-30 08:05 PM
The interrupt handler is generated by CubeMx in another file.
Here is the code, no changes were made to it:/**
* @brief This function handles EXTI Line 0 and Line 1 interrupt.
*/
void EXTI0_1_IRQHandler(void)
{
HAL_NVIC_ClearPendingIRQ(EXTI0_1_IRQn);
HAL_GPIO_EXTI_IRQHandler(GPIO_PIN_0);
}
However, this is for the user push button. I feel the LED initialization should still be ok..