2017-08-02 4:06 AM
I'm using the ST-Link with IAR, trying to do on-chip debugging via JTAG on a STM32F432. However, when I click 'Download and Debug', my application seems to randomly start running, instead of sitting in man at the reset vector, waiting for me to click 'Go'. If I stop, it's executing real code, but inserting breakpoint in the beginning of main shows it's not starting at the entry vector for my application. The strange thing is this behavior seems intermittent. Some sort of clock issue?
#iar #jtag2017-08-02 4:57 AM
Sounds like the 'IAR project options->Debugger->Run to' box isn't checked.
Check it off and put 'main' in the edit box
2017-08-02 5:06 AM
howard,
Thanks for the reply, but it is indeed already checked off. I should have mentioned that in my original post.
2017-08-02 7:10 AM
Is 'connect to running target' checked? It's not on my setup.
If you're using ST-Link the connect pulldown should probably be on Connect during reset.
2017-08-02 7:31 AM
Not much to work with, where is it executing?
Custom board?
External clock?
Full JTAG? or SWD?
If it is executing code in ROM make sure the BOOT0 pin is pulled LOW.
If 'run to main()' type option is checked, it might still be running SystemInit() to configure clocks and memories, if that is locking up in HSE or PLL code it won't get to main(). Check the HSE if you are using that.