From 7c1d9a5813217b0a27de5114eeff7997fd577149 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 37c0cb2502..485724728a 100644 --- a/components/soc/esp32s3/include/soc/soc.h +++ b/components/soc/esp32s3/include/soc/soc.h @@ -168,7 +168,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