We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b87977 commit 1fbd048Copy full SHA for 1fbd048
port/espressif/esp/ld/esp32_c3/esp32_c3.ld.base
@@ -82,5 +82,12 @@ SECTIONS
82
microzig_bss_end = .;
83
} > dram
84
85
+ .dram.heap (NOLOAD) :
86
+ {
87
+ microzig_heap_start = .;
88
+ . = ORIGIN(dram) + LENGTH(dram);
89
+ microzig_heap_end = .;
90
+ } > dram
91
+
92
PROVIDE(__global_pointer$ = microzig_data_start + 0x800);
93
}
port/espressif/esp/ld/esp32_c3/esp32_c3_direct_boot.ld.base
@@ -39,6 +39,13 @@ SECTIONS
39
40
} > ram0
41
42
+ .heap (NOLOAD) :
43
44
45
+ . = ORIGIN(ram0) + LENGTH(ram0);
46
47
+ } > ram0
48
49
.flash_end :
50
{
51
PROVIDE(microzig_flash_end = .);
0 commit comments