-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools: fixed elf symbols load if gdbinit specified
ROM and bootloader symbols add to use in GDB (via 'idf.py gdb')
- Loading branch information
Showing
6 changed files
with
276 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"esp32": [ | ||
{ | ||
"rev": 0, | ||
"build_date_str_addr": "0x3ff9ea80", | ||
"build_date_str": "Jun 8 2016" | ||
}, | ||
{ | ||
"rev": 3, | ||
"build_date_str_addr": "0x3ff9e986", | ||
"build_date_str": "Jul 29 2019" | ||
} | ||
], | ||
"esp32s2": [ | ||
{ | ||
"rev": 0, | ||
"build_date_str_addr": "0x3ffaf34b", | ||
"build_date_str": "Oct 25 2019" | ||
} | ||
], | ||
"esp32s3": [ | ||
{ | ||
"rev": 0, | ||
"build_date_str_addr": "0x3ff194ad", | ||
"build_date_str": "Mar 1 2021" | ||
} | ||
], | ||
"esp32c2": [ | ||
{ | ||
"rev": 0, | ||
"build_date_str_addr": "0x3ff47874", | ||
"build_date_str": "Jan 27 2022" | ||
} | ||
], | ||
"esp32c3": [ | ||
{ | ||
"rev": 0, | ||
"build_date_str_addr": "0x3ff1b878", | ||
"build_date_str": "Sep 18 2020" | ||
}, | ||
{ | ||
"rev": 3, | ||
"build_date_str_addr": "0x3ff1a374", | ||
"build_date_str": "Feb 7 2021" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"patternProperties": { | ||
"^esp32.*$": { | ||
"anyOf": [ | ||
{ | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"rev": { | ||
"type": "integer", | ||
"minimum": 0, | ||
"description": "Chip revision/ROM revision number" | ||
}, | ||
"build_date_str_addr": { | ||
"type": "string", | ||
"description": "The ROM build date string address to compare between ROM elf file and chip ROM memory", | ||
"pattern": "^0x[0-9a-fA-F]{8}$" | ||
} | ||
}, | ||
"required": ["rev", "build_date_str_addr"] | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters