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.elfConnect to server and load file
target remote localhost:3333
monitor reset halt
load build/firmware.elf
monitor reset initClassic sequence for connecting and flashing program memory.
RAM Read (Hex Dump)
x/16xw 0x20000000The command will read 16 32-bit words (in Hex) starting from address 0x20000000.
Check CPU registers
info registersCall Stack Unwind (Backtrace)
bt fullUse after catching a HardFault to see which C++ line caused it.
Add Breakpoint (Hardware)
hbreak main.cpp:45Continue and Stepping
continue\nstep\nnextMODULE UNDER CONSTRUCTION
EXPECTED DEPLOYMENT: Q4 2026