mirror of https://github.com/artizirk/dotfiles
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.
30 lines
670 B
30 lines
670 B
4 years ago
|
define bmconnect
|
||
|
if $argc < 1 || $argc > 2
|
||
|
help bmconnect
|
||
|
else
|
||
|
target extended-remote $arg0
|
||
|
if $argc == 2
|
||
|
monitor $arg1 enable
|
||
|
end
|
||
|
monitor swdp_scan
|
||
|
attach 1
|
||
|
end
|
||
|
end
|
||
|
|
||
|
document bmconnect
|
||
|
Attach to the Black Magic Probe at the given serial port/device.
|
||
|
bmconnect PORT [tpwr]
|
||
|
Specify PORT as COMx in Microsoft Windows or as /dev/ttyACMx in Linux.
|
||
|
If the second parameter is set as "tpwr", the power-sense pin is driven to
|
||
|
3.3V
|
||
|
end
|
||
|
|
||
|
# Load .gdbinit files from current dir
|
||
|
set auto-load local-gdbinit
|
||
|
|
||
|
# save command history
|
||
|
set history save on
|
||
|
set history size 10000
|
||
|
set history remove-duplicates unlimited
|
||
|
set history filename ~/.gdb_history
|