build-system: add loadable elf support for ESP32-S2 and C3

This commit is contained in:
Marius Vikhammer
2021-02-01 16:53:13 +08:00
parent d653d52e3c
commit fa7aa656d3
6 changed files with 41 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
set pagination off
# 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 *0x40047654
c
# Load the application into RAM
load
# Run till app_main
tb app_main
c