CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/Tools/debug/gdb-openocd.init
Views: 1798
1
# copy this file to .gdbinit in your Firmware tree
2
3
# this sets up gdb to use openocd. You must start openocd first
4
target extended-remote :3333
5
6
set mem inaccessible-by-default off
7
set print pretty
8
9
b AP_HAL::panic
10
b HardFault_Handler
11
b chSysHalt
12
set confirm off
13
14