Question
Where to put the "overwritten" of a "weak" function ?
The function "__weak void HAL_SYSTICK_Callback()" is implemented in "stm32f4xx_hal_cortex.c"
I overwrite it in the "main.c", I compiled project, but my project still does not work.
void HAL_SYSTICK_Callback(void)
{
HAL_IncTick();
}Why am I wrong ?
Where should I put the function ?
