Skip to content

Commit 59db9f0

Browse files
committed
[PRNTR F407 V1] Clean trailing space and file format
Signed-off-by: Frederic.Pillon <[email protected]>
1 parent 568bdc3 commit 59db9f0

File tree

2 files changed

+451
-451
lines changed

2 files changed

+451
-451
lines changed

variants/PRNTR_F407_V1/ldscript.ld

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ SECTIONS
134134
_sidata = LOADADDR(.data);
135135

136136
/* Initialized data sections goes into RAM, load LMA copy after code */
137-
.data :
137+
.data :
138138
{
139139
. = ALIGN(4);
140140
_sdata = .; /* create a global symbol at data start */
@@ -147,24 +147,24 @@ SECTIONS
147147

148148
_siccmram = LOADADDR(.ccmram);
149149

150-
/* CCM-RAM section
151-
*
152-
* IMPORTANT NOTE!
150+
/* CCM-RAM section
151+
*
152+
* IMPORTANT NOTE!
153153
* If initialized variables will be placed in this section,
154-
* the startup code needs to be modified to copy the init-values.
154+
* the startup code needs to be modified to copy the init-values.
155155
*/
156156
.ccmram :
157157
{
158158
. = ALIGN(4);
159159
_sccmram = .; /* create a global symbol at ccmram start */
160160
*(.ccmram)
161161
*(.ccmram*)
162-
162+
163163
. = ALIGN(4);
164164
_eccmram = .; /* create a global symbol at ccmram end */
165165
} >CCMRAM AT> FLASH
166166

167-
167+
168168
/* Uninitialized data section */
169169
. = ALIGN(4);
170170
.bss :
@@ -192,7 +192,7 @@ SECTIONS
192192
. = ALIGN(8);
193193
} >RAM
194194

195-
195+
196196

197197
/* Remove information from the standard libraries */
198198
/DISCARD/ :

0 commit comments

Comments
 (0)