File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -82,11 +82,15 @@ available.
82
82
I mentioned that OpenOCD provides a GDB server so let's connect to that right now:
83
83
84
84
``` console
85
- $ arm-none-eabi- gdb -q target/thumbv7em-none-eabihf/debug/led-roulette
85
+ $ < gdb> -q target/thumbv7em-none-eabihf/debug/led-roulette
86
86
Reading symbols from target/thumbv7em-none-eabihf/debug/led-roulette...done.
87
87
(gdb)
88
88
```
89
89
90
+ ** NOTE** : ` <gdb> ` represents a GDB program capable of debugging ARM binaries.
91
+ This could be ` arm-none-eabi-gdb ` , ` gdb-multiarch ` or ` gdb ` depending on your
92
+ system -- you may have to try all three.
93
+
90
94
This only opens a GDB shell. To actually connect to the OpenOCD GDB server, use the following
91
95
command within the GDB shell:
92
96
You can’t perform that action at this time.
0 commit comments