mirror of
https://github.com/espressif/esp-idf.git
synced 2025-09-25 01:37:22 +00:00
build-system: add loadable elf support for ESP32-S2 and C3
This commit is contained in:
14
tools/test_apps/system/gdb_loadable_elf/gdbinit_esp32c3
Normal file
14
tools/test_apps/system/gdb_loadable_elf/gdbinit_esp32c3
Normal 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
|
Reference in New Issue
Block a user