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 c18e6fb commit 2f85ef1Copy full SHA for 2f85ef1
targets/esp32c3.ld
@@ -97,6 +97,7 @@ SECTIONS
97
_sdata = ABSOLUTE(.);
98
*(.sdata)
99
*(.data .data.*)
100
+ *(.dram1 .dram1.*)
101
. = ALIGN (4);
102
_edata = ABSOLUTE(.);
103
} >DRAM
@@ -119,6 +120,10 @@ SECTIONS
119
120
.init : ALIGN(4)
121
{
122
*(.init)
123
+ *(.iram1 .iram1.*)
124
+ *(.wifi0iram .wifi0iram.*)
125
+ *(.wifirxiram .wifirxiram.*)
126
+ *(.wifislprxiram .wifislprxiram.*)
127
} >IRAM
128
129
/* Dummy section to put the IROM segment exactly behind the IRAM segment.
@@ -142,6 +147,7 @@ SECTIONS
142
147
.text : ALIGN(4)
143
148
144
149
*(.text .text.*)
150
+ *(.wifislpiram .wifislpiram.*)
145
151
} >IROM
146
152
153
/DISCARD/ :
0 commit comments