اشکال یابی (Debugging)

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