Browse Source

clean whitespace

Scott Lahteine 5 years ago
parent
commit
9ea99b49be
1 changed files with 9 additions and 14 deletions
  1. 9
    14
      buildroot/share/PlatformIO/variants/MARLIN_F407VE/ldscript.ld

+ 9
- 14
buildroot/share/PlatformIO/variants/MARLIN_F407VE/ldscript.ld View File

1
 /*
1
 /*
2
 *****************************************************************************
2
 *****************************************************************************
3
 **
3
 **
4
-
5
 **  File        : LinkerScript.ld
4
 **  File        : LinkerScript.ld
6
 **
5
 **
7
 **  Abstract    : Linker script for STM32F407VETx Device with
6
 **  Abstract    : Linker script for STM32F407VETx Device with
115
   _sidata = LOADADDR(.data);
114
   _sidata = LOADADDR(.data);
116
 
115
 
117
   /* Initialized data sections goes into RAM, load LMA copy after code */
116
   /* Initialized data sections goes into RAM, load LMA copy after code */
118
-  .data : 
117
+  .data :
119
   {
118
   {
120
     . = ALIGN(4);
119
     . = ALIGN(4);
121
     _sdata = .;        /* create a global symbol at data start */
120
     _sdata = .;        /* create a global symbol at data start */
128
 
127
 
129
   _siccmram = LOADADDR(.ccmram);
128
   _siccmram = LOADADDR(.ccmram);
130
 
129
 
131
-  /* CCM-RAM section 
132
-  * 
133
-  * IMPORTANT NOTE! 
134
-  * If initialized variables will be placed in this section,
135
-  * the startup code needs to be modified to copy the init-values.  
136
-  */
130
+  /* CCM-RAM section
131
+   *
132
+   * IMPORTANT NOTE!
133
+   * If initialized variables will be placed in this section,
134
+   * the startup code needs to be modified to copy the init-values.
135
+   */
137
   .ccmram :
136
   .ccmram :
138
   {
137
   {
139
     . = ALIGN(4);
138
     . = ALIGN(4);
140
     _sccmram = .;       /* create a global symbol at ccmram start */
139
     _sccmram = .;       /* create a global symbol at ccmram start */
141
     *(.ccmram)
140
     *(.ccmram)
142
     *(.ccmram*)
141
     *(.ccmram*)
143
-    
142
+
144
     . = ALIGN(4);
143
     . = ALIGN(4);
145
     _eccmram = .;       /* create a global symbol at ccmram end */
144
     _eccmram = .;       /* create a global symbol at ccmram end */
146
   } >CCMRAM AT> FLASH
145
   } >CCMRAM AT> FLASH
147
 
146
 
148
-  
147
+
149
   /* Uninitialized data section */
148
   /* Uninitialized data section */
150
   . = ALIGN(4);
149
   . = ALIGN(4);
151
   .bss :
150
   .bss :
173
     . = ALIGN(8);
172
     . = ALIGN(8);
174
   } >RAM
173
   } >RAM
175
 
174
 
176
-  
177
-
178
   /* Remove information from the standard libraries */
175
   /* Remove information from the standard libraries */
179
   /DISCARD/ :
176
   /DISCARD/ :
180
   {
177
   {
185
 
182
 
186
   .ARM.attributes 0 : { *(.ARM.attributes) }
183
   .ARM.attributes 0 : { *(.ARM.attributes) }
187
 }
184
 }
188
-
189
-

Loading…
Cancel
Save