Skip to content

Commit 5a0dcfc

Browse files
stephenhensleyfpistm
stephenhensley
authored andcommitted
added missing ram section to linker
1 parent 069e474 commit 5a0dcfc

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

variants/DAISY_SEED/ldscript.ld

+12
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,18 @@ SECTIONS
187187
__bss_end__ = _ebss;
188188
} >RAM_D1
189189

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+
. = ALIGN(4);
198+
_esram1_bss = .;
199+
PROVIDE(__sram1_bss_end = _esram1_bss);
200+
} >RAM_D2
201+
190202
/* User_heap_stack section, used to check that there is enough "RAM_D1" Ram type memory left */
191203
._user_heap_stack :
192204
{

0 commit comments

Comments
 (0)