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.
pull/13856/head
Guillaume Souchere 2024-05-06 12:11:56 +02:00
rodzic 375a4b878e
commit 78f4474416
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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.