11/*
2- *****************************************************************************
2+ ******************************************************************************
33**
44
55** File : LinkerScript.ld
1414**
1515** Target : STMicroelectronics STM32
1616**
17- **
18- ** Distribution: The file is distributed as is, without any warranty
17+ ** Distribution: The file is distributed “as is,” without any warranty
1918** of any kind.
2019**
2120*****************************************************************************
2221** @attention
2322**
24- ** <h2><center>© COPYRIGHT(c) 2014 Ac6 </center></h2>
23+ ** <h2><center>© COPYRIGHT(c) 2019 STMicroelectronics </center></h2>
2524**
2625** Redistribution and use in source and binary forms, with or without modification,
2726** are permitted provided that the following conditions are met:
3029** 2. Redistributions in binary form must reproduce the above copyright notice,
3130** this list of conditions and the following disclaimer in the documentation
3231** and/or other materials provided with the distribution.
33- ** 3. Neither the name of Ac6 nor the names of its contributors
32+ ** 3. Neither the name of STMicroelectronics nor the names of its contributors
3433** may be used to endorse or promote products derived from this software
3534** without specific prior written permission.
3635**
@@ -61,7 +60,7 @@ _Min_Stack_Size = 0x400; /* required amount of stack */
6160MEMORY
6261{
6362RAM (xrw) : ORIGIN = 0x20000000 , LENGTH = 128K
64- CCMRAM (rw ) : ORIGIN = 0x10000000 , LENGTH = 64K
63+ CCMRAM (xrw ) : ORIGIN = 0x10000000 , LENGTH = 64K
6564FLASH (rx) : ORIGIN = 0x8000000 , LENGTH = 512K
6665}
6766
@@ -77,7 +76,7 @@ SECTIONS
7776 } >FLASH
7877
7978 /* The program code and other data goes into FLASH */
80- .text ALIGN ( 8 ) :
79+ .text :
8180 {
8281 . = ALIGN (4 );
8382 *(.text ) /* .text sections (code) */
@@ -94,7 +93,7 @@ SECTIONS
9493 } >FLASH
9594
9695 /* Constant data goes into FLASH */
97- .rodata ALIGN ( 4 ) :
96+ .rodata :
9897 {
9998 . = ALIGN (4 );
10099 *(.rodata ) /* .rodata sections (constants, strings, etc.) */
0 commit comments