Process gets stuck in the initialization phase before enter main(), because of timer interrupt?
I am developing on STM32-f030CCT6 MCU, and IDE is IAR.
There are two program in the flash, one is loader, one is application.
Loader is responsible to upload application, and jump to application location to execution.
Loader uses timer 6 as time base source.
After jumping from loader to application, application gets stuck in the initialization phase before enter main().
However, if I turn off timer 6 before jumping to application, it works fine.
If loader uses system tick as time base source, it works fine as well.
My questions is, Do timer interrupts cause application to get stuck?
If it is the reason, why system tick works fine? System tick causes interrupts as well.
Thanks for your time to read this question!
Hope could get help for this, thanks a lot.