01 - Debug
This lab will teach you how to debug and run programs written in Rust and embassy on the Raspberry Pi Pico boards.
Concepts
- How to debug a microcontroller's firmware
- How the binary of the firmware looks like and how to inspect it
- How to cross-compile Rust software
- How to use
probe-rs
for RP2 processors - How to print messages from a microcontroller
- How to use the Visual Studio Code probe-rs extension
Resources
- Raspberry Pi Ltd, RP2350 Datasheet
- Chapter 4 - Memory
- Section 4.1 - ROM
- Section 4.2 - SRAM
- Section 4.3 - Boot RAM
- Chapter 5 - Bootrom
Software Prerequisites
Please make sure that you have these installed.
- Rust
- Rust ARMv8-M target -
rustup target add thumbv8m.main-none-eabihf
- probe-rs
- cargo binutils -
cargo install cargo-binutils
- Rust LLVM Tools -
rustup component add llvm-tools
- Visual Studio Code
Debugger
Developing software (firmware1) on devices is a little different from standard computer applications. The main difference is that the software is developed and compiled on the computer and then uploaded and run on a separate device.
Each development board defines its own way of uploading software to it. Some boards, like the Raspberry Pi Picos, provide a simulated USB drive where users can copy a file, others, like the ESP32 boards, provide a WiFi Access Point and a web interface.
One method that all boards have in common is using the debug interface. Microcontrollers provide a special hardware interface for debugging purposes. Using specialized hardware, developers can:
- stop the processor any time
- ask the processor to execute one instruction at a time
- read and write the processor's memory (RAM)
- read and write the processor's Flash (Storage)
- read the processor's registers
- access special debugging interfaces for sending log messages
These functions allow developers to upload programs and observe the program's behavior.
There are several debugging protocols available, the most common of them being JTAG and SWD. The RP2 processors use SWD.
When placed in production, the debug interface should be disabled. Users of the production device should never be able to access such an interface and tamper with the device's program.
Each microcontroller offers a way in which the debug interface can be permanently disabled or restricted.
The Raspberry Pi Pico can be debugged using one of the two pieces of hardware:
- The Raspberry Pi Debug Probe
- A secondary Raspberry Pi Pico
Raspberry Pi Debug Probe
Professional debuggers, while offering a lot of features, are usually expensive. Raspberry Pi provides the Debug Probe, an affordable debug device that uses an RP2040 processor. It is similar to a Raspberry Pi Pico board, just that it has a smaller form factor and provides debug cables.
The firmware running on the debug device is open source and available on github. It is written in C and it uses FreeRTOS. It is compatible with both versions of the RP2 processors, RP2040 and RP2350.
The details about the wiring are available on the Pico Debug Probe's website.
Secondary Pico
As the debugger's firmware is open source, an additional Raspberry Pi Pico can be used as a debugger.
The details about the wiring are available in the Getting started with Raspberry Pi Pico-series in the Debug with a second Pico or Pico 2 section.
The lab board uses RP2040 processor soldered to the PCB as a debugger. It runs the debugprobe firmware and has traces soldered to Raspberry Pi Pico's socket.