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 a6b011a commit cdd92e0Copy full SHA for cdd92e0
cortex-m-rt/link.x.in
@@ -106,14 +106,14 @@ SECTIONS
106
107
/* ## Sections in RAM */
108
/* ### .data */
109
- .data : AT(__erodata) ALIGN(4)
+ .data : ALIGN(4)
110
{
111
. = ALIGN(4);
112
__sdata = .;
113
*(.data .data.*);
114
. = ALIGN(4); /* 4-byte align the end (VMA) of this section */
115
__edata = .;
116
- } > RAM
+ } > RAM AT>FLASH
117
118
/* LMA of .data */
119
__sidata = LOADADDR(.data);
0 commit comments