cancel
Showing results for 
Search instead for 
Did you mean: 

STM32CubeMx with FreeRTOS, LED, UART stuck in infinite loop

jephua
Associate II
Posted on July 31, 2014 at 05:05

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..
0 REPLIES 0