Question
Legacy HAL TIM interrupt callbacks?
In studying "stm32f0xx_hal_tim.c" I came across this:
case HAL_TIM_PERIOD_ELAPSED_CB_ID :
htim->PeriodElapsedCallback = HAL_TIM_PeriodElapsedCallback; /* Legacy weak Period Elapsed Callback */
break;It says "legacy". This implies there's a new-and-improved way. Where do I find this information?
Thanks.