gdbinit_esp32 307 B

1234567891011121314
  1. set pagination off
  2. # Connect to a running instance of OpenOCD
  3. target remote 127.0.0.1:3333
  4. # Reset and halt the target
  5. mon reset halt
  6. # Run to a specific point in ROM code,
  7. # where most of initialization is complete.
  8. thb *0x40007d54
  9. c
  10. # Load the application into RAM
  11. load
  12. # Run till app_main
  13. tb app_main
  14. c