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 9ad7f3b commit 7d5933dCopy full SHA for 7d5933d
1 file changed
bl_update/ldscript_bl.ld
@@ -79,6 +79,7 @@ SECTIONS
79
KEEP (*(SORT(.fini_array.*)))
80
KEEP (*(.fini_array*))
81
PROVIDE_HIDDEN (__fini_array_end = .);
82
+ . = ALIGN(32);
83
} >FLASH
84
85
/* used by the startup to initialize data */
@@ -87,12 +88,12 @@ SECTIONS
87
88
/* Initialized data sections goes into RAM, load LMA copy after code */
89
.data :
90
{
- . = ALIGN(4);
91
92
_sdata = .; /* create a global symbol at data start */
93
*(.data) /* .data sections */
94
*(.data*) /* .data* sections */
95
96
97
_edata = .; /* define a global symbol at data end */
98
} >RAM AT> FLASH
99
0 commit comments