偵錯
Embed.toml:
[default.general]
chip = "nrf52833_xxAA"
[debug.gdb]
enabled = true
在 src/bare-metal/microcontrollers/examples/
底下的一個終端機中:
cargo embed --bin board_support debug
在相同目錄的另一個終端機中:
使用 gLinux 或 Debian:
gdb-multiarch target/thumbv7em-none-eabihf/debug/board_support --eval-command="target remote :1337"
使用 MacOS:
arm-none-eabi-gdb target/thumbv7em-none-eabihf/debug/board_support --eval-command="target remote :1337"
在 GDB 中,嘗試執行下列指令:
b src/bin/board_support.rs:29
b src/bin/board_support.rs:30
b src/bin/board_support.rs:32
c
c
c