From 2e973e28dcd44dff9ccde0d4de022947c111b2b8 Mon Sep 17 00:00:00 2001 From: Aditya Patwardhan Date: Thu, 9 Nov 2023 09:58:17 +0530 Subject: [PATCH] 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 --- components/soc/esp32s3/include/soc/soc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/soc/esp32s3/include/soc/soc.h b/components/soc/esp32s3/include/soc/soc.h index 547acdd8de..d25e852cac 100644 --- a/components/soc/esp32s3/include/soc/soc.h +++ b/components/soc/esp32s3/include/soc/soc.h @@ -253,7 +253,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