You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
264 B
13 lines
264 B
6 years ago
|
# copy this file to .gdbinit in your Firmware tree
|
||
|
|
||
|
# this sets up gdb to use openocd. You must start openocd first
|
||
|
target extended-remote :3333
|
||
|
|
||
|
set mem inaccessible-by-default off
|
||
|
set print pretty
|
||
|
|
||
|
b AP_HAL::panic
|
||
|
b HardFault_Handler
|
||
|
b chSysHalt
|
||
|
set confirm off
|