Difference between revisions of "Debuggers"
From Wiki at Neela Nurseries
m (Add example Segger JLinkExe command script.) |
m (Add JLinkExe invocation example.) |
||
Line 23: | Line 23: | ||
R0 | R0 | ||
quit | quit | ||
+ | </pre> | ||
+ | |||
+ | Call the above Segger script with following, adjust path to above script file when called from another directory: | ||
+ | |||
+ | <pre> | ||
+ | JLinkExe -nogui 1 -if swd -speed auto -device LPC55S69_M33_0 -CommanderScript ./runner-cpu0.jlink | ||
</pre> | </pre> | ||
<!-- EOF --> | <!-- EOF --> |
Latest revision as of 16:41, 27 February 2025
Cerca 2011 Segger discontinues IAR branded JLink debuggers:
An apparent manual for the cerca 2011 IAR branded Segger debugger:
Wow, save pin two this newer document regarding Segger's JLink pinout shows the same signal arrangement. Need to test this out to see whether same ribbon cable will work with IAR branded debugger:
Example Segger JLinkExe command script:
ExitOnError 1 erase reset loadfile "build/img.hex" 0xa0000000 go writeDP 1 0 readDP 1 R0 quit
Call the above Segger script with following, adjust path to above script file when called from another directory:
JLinkExe -nogui 1 -if swd -speed auto -device LPC55S69_M33_0 -CommanderScript ./runner-cpu0.jlink