2020-04-17 11:51:00 +02:00
|
|
|
set pagination off
|
2019-07-22 16:04:03 +02:00
|
|
|
# Connect to a running instance of OpenOCD
|
|
|
|
|
target remote 127.0.0.1:3333
|
|
|
|
|
# Reset and halt the target
|
|
|
|
|
mon reset halt
|
|
|
|
|
# Run to a specific point in ROM code,
|
|
|
|
|
# where most of initialization is complete.
|
2021-05-04 16:22:50 +02:00
|
|
|
thb *0x40007d54
|
2019-07-22 16:04:03 +02:00
|
|
|
c
|
|
|
|
|
# Load the application into RAM
|
|
|
|
|
load
|
|
|
|
|
# Run till app_main
|
|
|
|
|
tb app_main
|
|
|
|
|
c
|