STM32F072RB systick not firing
I have an application running on an stm23F0-discovery the code is quite simple:
HAL_Init();
SystemClock_Config()
while(1);
The code is built and debugged using IAR workbench 7.5
The discovery clock config uses the internal HSI 8mHZ clock source. I have a break point set in stm32f0xx_it.c at SysTick_Handler(). The break point get hit every ms as expected.
Move this code to our target board which is running the same exact micro and the SysTick_Handler never gets called. This really messes things up as you can imagine because Hal_delay() just hangs. Further experiments with Timer3 yields the same result. Timer3 fires on the dev kit but not on our target hardware.
any thoughts?
