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:
Aditya Patwardhan 2023-11-09 09:58:17 +05:30
parent 05c5d04734
commit f62e7fd4e8
No known key found for this signature in database
GPG Key ID: E628B2648FBF0DD8

View File

@ -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