esp32s3/esp32s2: Fix D_I_BUS_OFFSET

It seems like a wrong copy-and-paste from esp32c3.
Actually, internal memory mapping varies among processors.

esp32s3: lightly tested with wamr aot
esp32s2: not tested (i have no hardware access)
This commit is contained in:
YAMAMOTO Takashi 2024-05-13 13:02:23 +09:00 committed by Xiang Xiao
parent e67df47b64
commit ab7805062d
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@
#error "No suitable heap available. Enable ESP32S2_RTC_HEAP."
#endif
#define D_I_BUS_OFFSET 0x700000
#define D_I_BUS_OFFSET 0x70000
/****************************************************************************
* Public Functions

View File

@ -45,7 +45,7 @@
#error "No suitable heap available. Enable ESP32S3_RTC_HEAP."
#endif
#define D_I_BUS_OFFSET 0x700000
#define D_I_BUS_OFFSET 0x6f0000
/****************************************************************************
* Public Functions