kopia lustrzana https://github.com/espressif/esp-idf
14 wiersze
288 B
Plaintext
14 wiersze
288 B
Plaintext
# 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.
|
|
thb *0x40007901
|
|
c
|
|
# Load the application into RAM
|
|
load
|
|
# Run till app_main
|
|
tb app_main
|
|
c
|