Question
HAL_Delay stuck in Loop
Hello!
First of all, im pretty new to programming STMs. I'm currently working on a project on the WL Series and stuck with the HAL_Delay function. Even something super simple like toggling my User LED won't work.
For RCC im using a TCXO 32Mhz as HSE.
while (1)
{
/* USER CODE END WHILE */
/* USER CODE BEGIN 3 */
HAL_GPIO_TogglePin(GPIOB, GPIO_PIN_3);
HAL_Delay(100);
}
/* USER CODE END 3 */
}The LED turns on and the Code gets stuck in the Delay. I do think the interrupts are set right.
An this is my Clock Configuration:
I'm thankful for any kind of help.
Thanks,
Gabriel
