Files
Upsilon/gdb_script.gdb
Romain Goyet 724fdb18e7 [ion] Implement Log::print using SWO on the device
Change-Id: I17e024535cc0f0daf74953c7221e2b98959e6c47
2017-02-14 10:57:30 +01:00

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