Skip to content

Commit

Permalink
fix(soc): esp32s3/Fix the DROM_DROM_HIGH limit
Browse files Browse the repository at this point in the history
    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
  • Loading branch information
AdityaHPatwardhan committed Dec 11, 2023
1 parent 05c5d04 commit f62e7fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/soc/esp32s3/include/soc/soc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f62e7fd

Please sign in to comment.