EMBEDDED TOOLKIT

SYSTEMS R&D // DEV_TOOLS SUITE

Tools (65)

gdb openocd jlink

SYSTEM ONLINE

Interactive Debugger Command Generator

You're right – a simple cheat sheet is not enough! This module dynamically generates syntactically correct commands for the OpenOCD server and GDB client. Fill in the environment variables on the left, and the system will output precise commands ready to be pasted into the terminal.

GDB Parameters

Generated GDB Commands

Start GDB and load symbols
arm-none-eabi-gdb build/firmware.elf
Connect to server and load file
target remote localhost:3333 monitor reset halt load build/firmware.elf monitor reset init
Classic sequence for connecting and flashing program memory.
RAM Read (Hex Dump)
x/16xw 0x20000000
The command will read 16 32-bit words (in Hex) starting from address 0x20000000.
Check CPU registers
info registers
Call Stack Unwind (Backtrace)
bt full
Use after catching a HardFault to see which C++ line caused it.
Add Breakpoint (Hardware)
hbreak main.cpp:45
Continue and Stepping
continue\nstep\nnext

MODULE UNDER CONSTRUCTION

EXPECTED DEPLOYMENT: Q4 2026