mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
20 lines
315 B
Plaintext
20 lines
315 B
Plaintext
# Let's connect to OpenOCD
|
|
target remote localhost:3333
|
|
|
|
# GDB pagniation is annoying
|
|
set pagination off
|
|
|
|
# Load our executable
|
|
load
|
|
|
|
# Tell OpenOCD to reset and halt
|
|
monitor itm ports on
|
|
monitor tpiu config internal swo.log.bin uart off 16000000
|
|
monitor reset halt
|
|
|
|
break init
|
|
break abort
|
|
break __assert
|
|
|
|
continue
|