Question
why STM32F303 stop at HAL_TIM_Base_Start_IT(Help)
I found a issue.
if the code is
HAL_PWR_DisableSleepOnExit();
HAL_TIM_Base_Start_IT(&htim2);
it will stop at "if (IS_TIM_SLAVE_INSTANCE(htim->Instance))", but i didnt set break point at here.
if i change code:
HAL_TIM_Base_Start_IT(&htim2);
HAL_PWR_DisableSleepOnExit();
it will run success
Does anyone know anything about this?
