2021-08-12 02:03 AM
Everytime to debug a program cubeIDE always downloads the program to mcu first no matter the program had not been modified since last download, is it possible to seting the IDE only downloads the program when the program has changed?
Solved! Go to Solution.
2021-08-12 07:33 AM
2021-08-12 05:52 AM
No way you download only if changed since last download. You could create a script that did this, but it would take some effort.
To debug your program without downloading it:
Go to Debug Configurations... -> Startup -> select load image -> Edit... -> uncheck Download
To debug without resetting the device:
Go to Debug Configurations... -> Debugger -> in Reset Behavior, select "None"
2021-08-12 07:26 AM
To emphasize again: uncheck Download will not download a changed program to the target either, so that this option has to be activated again for a new download.
2021-08-12 07:33 AM
2021-08-12 07:00 PM
Thank you very much, it works, that is what I need.