mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
15 lines
215 B
Plaintext
15 lines
215 B
Plaintext
# Let's connect to OpenOCD
|
|
target remote localhost:3333
|
|
|
|
# Load our executable
|
|
load test.elf
|
|
|
|
# Tell OpenOCD to reset and halt
|
|
monitor reset halt
|
|
|
|
# Add a breakpoint
|
|
break debugger
|
|
|
|
# Launch the test suite
|
|
continue
|