Difference between revisions of "Debuggers"
From Wiki at Neela Nurseries
m |
m (Add example Segger JLinkExe command script.) |
||
Line 11: | Line 11: | ||
* https://www.segger.com/products/debug-probes/j-link/technology/interface-description/ | * https://www.segger.com/products/debug-probes/j-link/technology/interface-description/ | ||
+ | Example Segger JLinkExe command script: | ||
+ | |||
+ | <pre> | ||
+ | ExitOnError 1 | ||
+ | erase | ||
+ | reset | ||
+ | loadfile "build/img.hex" 0xa0000000 | ||
+ | go | ||
+ | writeDP 1 0 | ||
+ | readDP 1 | ||
+ | R0 | ||
+ | quit | ||
+ | </pre> | ||
<!-- EOF --> | <!-- EOF --> |
Revision as of 07:03, 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