mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-27 18:32:54 +00:00
soc: fix backtraces containing ROM functions
esp_ptr_executable would return false for pointers to ROM, which would interrupt the backtrace. This makes ROM ranges recognized as executable.
This commit is contained in:
@@ -240,7 +240,7 @@
|
||||
#define SOC_IROM_LOW 0x400D0000
|
||||
#define SOC_IROM_HIGH 0x40400000
|
||||
#define SOC_IROM_MASK_LOW 0x40000000
|
||||
#define SOC_IROM_MASK_HIGH 0x40070000
|
||||
#define SOC_IROM_MASK_HIGH 0x40064F00
|
||||
#define SOC_CACHE_PRO_LOW 0x40070000
|
||||
#define SOC_CACHE_PRO_HIGH 0x40078000
|
||||
#define SOC_CACHE_APP_LOW 0x40078000
|
||||
|
Reference in New Issue
Block a user