2022-02-08 02:38 PM
2022-02-17 02:00 PM
In the picture you have submitted:
Red block with green arrow under "Navigate" label, halts, recompiles, reloads, then executes (like F11). that's the one you have highlighted.
Green arrow with yellow arrow circling under it. Found under the refactor label. This resets the processor without reloading it. That's the one you want. Fifth icon from the left.
2022-02-08 04:46 PM
I was looking for this recently and couldn't find it. I swear it was there before as well. Glad I'm not losing my marbles.
There are likely ways to reset the processor through the debugger command line, but it looks like the button is gone for now.
2022-02-08 05:04 PM
It's there, but you have to be in the debug window to see it. Look for an icon with a right pointing triangle with a circular arrow under the triangle. On my system, it's the fifth icon from the left.
2022-02-09 06:43 AM
How to be in debug window? I've been doing debugging, so I should be in debug mode, but I'm not seeing that button.
I also try Customize Perspective, and got this message when click on "Restart Toolbar" box.
When I click on "Reset the chip..." box, I got thisHow do I fix all of this?
2022-02-09 06:53 AM
I found it.
On upper right corner of IDE, click on "Open Perspective" button.
Then select Debug.
Then the bug icon on upper right corner should be highlighted, and looks like this
When I close and restart IDE, it become MX perspective, instead of Debug perspective. How do I save the perspective setting?
2022-02-09 08:02 AM
When you restart the IDE, the default setting is generally the C, C++ perspective.
Try this:
1) clicking on any file tab (main.c) should bring up the C, C++ perspective. If you haven't told it so, then you'll get a "this is normally associated with the C, C++ perspective, do you wish to switch, select "remember my decision" and "yes"
that ought to get you out of the MX window (the order of the icons isn't important)
2) do a control B (or build your solution).
3) hit F11 to go to debugging (automatically load solution into processor). If you are not in the debug window, it should ask you the same question: "this is normally associated with the debug perspective, do you wish to switch, select "remember my decision" and "yes"
If it won't do this, then try resetting the perspective.
You seem to have gotten it into a mode that I haven't seen.
Normally it should be in the C, C++ perspective but you ought to be able to switch to any one.
2022-02-17 01:51 PM
I couldn't get it to switch to Debug perspective automatically after F11. I remember seeing the setting somewhere, but can't find it now.
BTW, I get Terminate and Relaunch button in Debug perspective. This button will restart the processor from beginning. However, it re-programs the processor first.
Is there another button to restart (such as activating the reset pin of the processor) without re-programming the processor?
2022-02-17 02:00 PM
In the picture you have submitted:
Red block with green arrow under "Navigate" label, halts, recompiles, reloads, then executes (like F11). that's the one you have highlighted.
Green arrow with yellow arrow circling under it. Found under the refactor label. This resets the processor without reloading it. That's the one you want. Fifth icon from the left.
2022-02-17 02:30 PM
Yeah, I got it. It was right under my nose. Thanks every1.