mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-08-10 07:15:02 -06:00
Misc. whitespace
This commit is contained in:
parent
3d153486da
commit
ec13aa0dc1
3 changed files with 10 additions and 12 deletions
|
@ -134,7 +134,7 @@ SECTIONS
|
|||
_sidata = LOADADDR(.data);
|
||||
|
||||
/* Initialized data sections goes into RAM, load LMA copy after code */
|
||||
.data :
|
||||
.data :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
_sdata = .; /* create a global symbol at data start */
|
||||
|
@ -147,24 +147,24 @@ SECTIONS
|
|||
|
||||
_siccmram = LOADADDR(.ccmram);
|
||||
|
||||
/* CCM-RAM section
|
||||
*
|
||||
* IMPORTANT NOTE!
|
||||
* If initialized variables will be placed in this section,
|
||||
* the startup code needs to be modified to copy the init-values.
|
||||
*/
|
||||
/* CCM-RAM section
|
||||
*
|
||||
* IMPORTANT NOTE!
|
||||
* If initialized variables will be placed in this section,
|
||||
* the startup code needs to be modified to copy the init-values.
|
||||
*/
|
||||
.ccmram :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
_sccmram = .; /* create a global symbol at ccmram start */
|
||||
*(.ccmram)
|
||||
*(.ccmram*)
|
||||
|
||||
|
||||
. = ALIGN(4);
|
||||
_eccmram = .; /* create a global symbol at ccmram end */
|
||||
} >CCMRAM AT> FLASH
|
||||
|
||||
|
||||
|
||||
/* Uninitialized data section */
|
||||
. = ALIGN(4);
|
||||
.bss :
|
||||
|
@ -192,7 +192,6 @@ SECTIONS
|
|||
. = ALIGN(4);
|
||||
} >RAM
|
||||
|
||||
|
||||
|
||||
/* Remove information from the standard libraries */
|
||||
/DISCARD/ :
|
||||
|
|
|
@ -135,7 +135,7 @@ extern const PinName digitalPin[];
|
|||
#define PE15 64 //1:FSMC_D12
|
||||
#define PD8 65 //1:FSMC_D13 / USART3_TX
|
||||
#define PD9 66 //1:FSMC_D14 / USART3_RX
|
||||
#define PD10 67 //1:FSMC_D15
|
||||
#define PD10 67 //1:FSMC_D15
|
||||
#define PD11 68 //1:FSMC_A16
|
||||
#define PD12 69 //1:FSMC_A17 / TIM4_CH1
|
||||
#define PD13 70 //1:FSMC_A18 / TIM4_CH2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue