8000
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 069e474 commit 5a0dcfcCopy full SHA for 5a0dcfc
variants/DAISY_SEED/ldscript.ld
@@ -187,6 +187,18 @@ SECTIONS
187
__bss_end__ = _ebss;
188
} >RAM_D1
189
190
+ .sram1_bss (NOLOAD) :
191
+ {
192
+ . = ALIGN(4);
193
+ _ssram1_bss = .;
194
+ PROVIDE(__sram1_bss_start = _ssram1_bss);
195
+ *(.sram1_bss)
196
+ *(.sram1_bss*)
197
198
+ _esram1_bss = .;
199
+ PROVIDE(__sram1_bss_end = _esram1_bss);
200
+ } >RAM_D2
201
+
202
/* User_heap_stack section, used to check that there is enough "RAM_D1" Ram type memory left */
203
._user_heap_stack :
204
{
0 commit comments