Skip to content

Debugging with GDB

The GNU DeBugger (GDB) comes installed with the compiler toolchain in the form of the arm-none-eabi-gdb binary. The debugger reads the debug symbols inside an ELF file to understand the static and dynamic memory layout of the PX4 firmware. To access the PX4 autopilot microcontroller, it needs to connect to a Remote Target, which is provided by a SWD debug probe.

The flow of information looks like this:

sh
Developer <=> GDB <=> GDB Server <=> Debug Probe <=> SWD <=> PX4 Autopilot.

Quickstart

To start a debugging session you typically:

  1. Need a specialized SWD debug probe.
  2. Find and connect to the SWD debug port. You may need a debug adapter.
  3. Configure and start the debug probe to create a GDB server.
  4. Launch GDB and connect to the GDB server as a remote target.
  5. Debug your firmware interactively.

See the debug probe documentation for details on how to setup your debug connection:

  • SEGGER J-Link: commercial probe, no built-in serial console, requires adapter.
  • Black Magic Probe: integrated GDB server and serial console, requires adapter.
  • STLink: best value, integrated serial console, adapter must be soldered.

We recommend using the J-Link with the Pixhawk Debug Adapter or the STLinkv3-MINIE with a soldered custom cable.

Once connected, you can use the usual GDB commands such as:

  • continue to continue program execution
  • run to start from the beginning
  • backtrace to see the backtrace
  • break somewhere.cpp:123 to set a breakpoint
  • delete somewhere.cpp:123 to remove it again
  • info locals to print local variables
  • info registers to print the registers

Consult the GDB documentation for more details.

TIP

To avoid having to type all commands to connect in GDB each time, you can write them into ~/.gdbinit.

Next Steps

You've now connected the flight controller to an SWD debug probe!

The following topics explain how to start on-target debugging:

Embedded Debug Tools

The Embedded Debug Tools connect several software and hardware debugging tools together in a user friendly Python package to more easily enable advanced use cases for ARM Cortex-M microcontrollers and related devices.

The library orchestrates the launch and configuration of hardware debug and trace probes, debuggers, logic analyzers, and waveform generators and provides analysis tools, converters, and plugins to provide significant insight into the software and hardware state during or after execution.

The emdbg library contains many useful GDB plugins that make debugging PX4 easier. It also provides tools for profiling PX4 in real-time.