HAL_Delay running too fast in STM32N6 Application with TIM2 timebase
Hi all,I've created a new default project for the STM32N6 Discovery Kit, and set up a simple blinking application using the BSP LED functions. /* USER CODE BEGIN 2 */ BSP_LED_Init(LED_GREEN); while(1) { HAL_Delay(1000); BSP_LED_Toggle(LE...