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-esp32.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 print pretty
7
set remote hardware-watchpoint-limit 2
8
mon reset halt
9
maintenance flush register-cache
10
set confirm off
11
12