-1

I'm trying to debug my application with the Segger J-link since the ST-Link debugger that comes with the Nucleo dev board allows only 5 breakpoints.

I cannot find a way to stop the watchdog during debugging sessions. Where can I find such setting?

If I use the ST-link for debugging this option is available in the following window:

enter image description here

but, when I select J-Link, that option is not there anymore:

enter image description here

I found something on SO about adding specific instructions (Disabling the STM32 IWDG during debugging), but I'm looking for something that does not require to add code.

Alexis
  • 576
  • 1
  • 10
  • 29

1 Answers1

-2

but I'm looking for something that does not require to add code

The answer is:

  1. Easy way: change the IDE.
  2. The moderate way: amend the debug startup script (https://wiki.segger.com/J-Link_script_files)
  3. The hard way: rewrite the debug plugin
0___________
  • 60,014
  • 4
  • 34
  • 74