HiIm using TIM6 on the STM32F303 MCU with clock 64 MHz and PSC 63999.If the ARR set to 65000 and in non- interrupt mode, the below code HAL_TIM_Base_Start(&htim6);
HAL_Delay(500);
HAL_TIM_Base_Stop(&htim6); results in CNT value of ~500 as expected.Ho...