From 78f4474416edcf571bd6716018f00674f13e8420 Mon Sep 17 00:00:00 2001 From: Guillaume Souchere Date: Mon, 6 May 2024 12:11:56 +0200 Subject: [PATCH] fix(soc): Fix ROM stack start for esp32c5-mp Update the value SOC_ROM_STACK_START to the expected value from bootloader.ld memory map. --- components/soc/esp32c5/mp/include/soc/soc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/soc/esp32c5/mp/include/soc/soc.h b/components/soc/esp32c5/mp/include/soc/soc.h index 3cf20c4c3a..5c3ac9c8e9 100644 --- a/components/soc/esp32c5/mp/include/soc/soc.h +++ b/components/soc/esp32c5/mp/include/soc/soc.h @@ -208,7 +208,7 @@ #define SOC_DEBUG_HIGH 0x28000000 // Start (highest address) of ROM boot stack, only relevant during early boot -#define SOC_ROM_STACK_START 0x4085c8d0 +#define SOC_ROM_STACK_START 0x4085e9a0 #define SOC_ROM_STACK_SIZE 0x2000 //On RISC-V CPUs, the interrupt sources are all external interrupts, whose type, source and priority are configured by SW.