mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fix(soc): esp32s3/Fix the DROM_DROM_HIGH limit
Previously the DROM_HIGH_ADDR for esp32s3 was 0x3D000000, which convers only 16 MB of address range. But esp32s3 supports 32 MB external memory. So this address should be 0x3E000000
This commit is contained in:
parent
05c5d04734
commit
f62e7fd4e8
@ -167,7 +167,7 @@
|
||||
|
||||
/* Overall memory map */
|
||||
#define SOC_DROM_LOW 0x3C000000
|
||||
#define SOC_DROM_HIGH 0x3D000000
|
||||
#define SOC_DROM_HIGH 0x3E000000
|
||||
#define SOC_IROM_LOW 0x42000000
|
||||
#define SOC_IROM_HIGH 0x44000000
|
||||
#define SOC_IRAM_LOW 0x40370000
|
||||
|
Loading…
Reference in New Issue
Block a user