2017-05-28 01:42 PM
I put this in the main.c before main(), it does not run. Google did not help. All though I did not read all 1790 results.
volatile int oma2=0;
volatile uint16_t oma=0;
void HAL_SYSTICK_Callback(void)
{
oma2++;
if (oma2>100)
{
oma2=0;
oma++;
}
}�?�?�?�?�?�?�?�?�?�?�?
This stands in 746 Discovery BSP example. I was trying to do simple animation/testing LCD.
2017-05-28 05:11 PM
Check that SysTick_Handler() is implemented, and calls HAL_SYSTICK_IRQHandler()