Merge branch 'rofrol-patch-1'

This commit is contained in:
Michael Droogleever Fortuyn
2020-04-27 18:54:57 +02:00
2 changed files with 2 additions and 1 deletions

View File

@@ -71,6 +71,7 @@ available.
I mentioned that OpenOCD provides a GDB server so let's connect to that right now:
``` console
# On Ubuntu use `gdb-mutliarch -q target/thumbv6m-none-eabi/debug//microrust-start`
$ arm-none-eabi-gdb -q target/thumbv6m-none-eabi/debug/microrust-start
Reading symbols from target/thumbv6m-none-eabi/debug/microrust-start...done.
(gdb)

View File

@@ -9,7 +9,7 @@ Here are the installation commands for a few Linux distributions.
``` shell
$ sudo apt-get install \
gcc-arm-none-eabi \
gdb-arm-none-eabi \
gdb-multiarch \
minicom \
openocd
```