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 ec98017 commit e32f969Copy full SHA for e32f969
hal/targets/cmsis/TARGET_Freescale/TARGET_MCU_K64F/TOOLCHAIN_GCC_ARM/K64FN1M0xxx12.ld
@@ -186,6 +186,19 @@ SECTIONS
186
__uvisor_secure_end = .;
187
} >FLASH
188
189
+ /* Uninitialized memory section
190
+ * The C/C++ library initialization will not touch this section. Data
191
+ * written here will keep its value on reboots (assuming no power loss). */
192
+ .uninitialized (NOLOAD):
193
+ {
194
+ . = ALIGN(32);
195
+ __uninitialized_start = .;
196
+ *(.uninitialized)
197
+ KEEP(*(.keep.uninitialized))
198
199
+ __uninitialized_end = .;
200
+ } > RAM
201
+
202
.bss :
203
{
204
__bss_start__ = .;
0 commit comments