Skip to content

Commit

Permalink
feat: add support for esp32c61
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdragun committed May 14, 2024
1 parent e983453 commit 23cdea9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions esp_idf_panic_decoder/gdb_panic_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
'esp32h2': GDB_REGS_INFO_RISCV_ILP32,
'esp32p4': GDB_REGS_INFO_RISCV_ILP32,
'esp32c5': GDB_REGS_INFO_RISCV_ILP32,
'esp32c61': GDB_REGS_INFO_RISCV_ILP32,
}

PanicInfo = namedtuple('PanicInfo', 'core_id regs stack_base_addr stack_data')
Expand Down Expand Up @@ -161,6 +162,7 @@ def parse_idf_riscv_panic_output(panic_text): # type: (str) -> PanicInfo
'esp32h2': parse_idf_riscv_panic_output,
'esp32p4': parse_idf_riscv_panic_output,
'esp32c5': parse_idf_riscv_panic_output,
'esp32c61': parse_idf_riscv_panic_output,
}


Expand Down

0 comments on commit 23cdea9

Please sign in to comment.