whitespace

This commit is contained in:
hathach 2023-03-17 19:31:45 +07:00
parent 899e7cc4f9
commit b3ecf82196
No known key found for this signature in database
GPG Key ID: F5D50C6D51D17CBA
4 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
/* /*
* The MIT License (MIT) * The MIT License (MIT)
* *
* Copyright (c) 2020 MM32 SE TEAM * Copyright (c) 2020 MM32 SE TEAM
@ -110,7 +110,7 @@ SECTIONS
_sidata = LOADADDR(.data); _sidata = LOADADDR(.data);
/* Initialized data sections goes into RAM, load LMA copy after code */ /* Initialized data sections goes into RAM, load LMA copy after code */
.data : .data :
{ {
. = ALIGN(4); . = ALIGN(4);
_sdata = .; /* create a global symbol at data start */ _sdata = .; /* create a global symbol at data start */
@ -121,7 +121,7 @@ SECTIONS
_edata = .; /* define a global symbol at data end */ _edata = .; /* define a global symbol at data end */
} >RAM AT> FLASH } >RAM AT> FLASH
/* Uninitialized data section */ /* Uninitialized data section */
. = ALIGN(4); . = ALIGN(4);
.bss : .bss :
@ -149,7 +149,7 @@ SECTIONS
. = ALIGN(8); . = ALIGN(8);
} >RAM } >RAM
/* Remove information from the standard libraries */ /* Remove information from the standard libraries */
/DISCARD/ : /DISCARD/ :

View File

@ -1,4 +1,4 @@
/* /*
* The MIT License (MIT) * The MIT License (MIT)
* *
* Copyright (c) 2020 MM32 SE TEAM * Copyright (c) 2020 MM32 SE TEAM
@ -59,7 +59,7 @@ const int baudrate = 115200;
void board_init (void) void board_init (void)
{ {
// usb clock // usb clock
USB_DeviceClockInit(); USB_DeviceClockInit();
if ( SysTick_Config(SystemCoreClock / 1000) ) if ( SysTick_Config(SystemCoreClock / 1000) )

View File

@ -1,4 +1,4 @@
/* /*
* The MIT License (MIT) * The MIT License (MIT)
* *
* Copyright (c) 2020 MM32 SE TEAM * Copyright (c) 2020 MM32 SE TEAM
@ -110,7 +110,7 @@ SECTIONS
_sidata = LOADADDR(.data); _sidata = LOADADDR(.data);
/* Initialized data sections goes into RAM, load LMA copy after code */ /* Initialized data sections goes into RAM, load LMA copy after code */
.data : .data :
{ {
. = ALIGN(4); . = ALIGN(4);
_sdata = .; /* create a global symbol at data start */ _sdata = .; /* create a global symbol at data start */
@ -121,7 +121,7 @@ SECTIONS
_edata = .; /* define a global symbol at data end */ _edata = .; /* define a global symbol at data end */
} >RAM AT> FLASH } >RAM AT> FLASH
/* Uninitialized data section */ /* Uninitialized data section */
. = ALIGN(4); . = ALIGN(4);
.bss : .bss :
@ -149,7 +149,7 @@ SECTIONS
. = ALIGN(8); . = ALIGN(8);
} >RAM } >RAM
/* Remove information from the standard libraries */ /* Remove information from the standard libraries */
/DISCARD/ : /DISCARD/ :

View File

@ -1,4 +1,4 @@
/* /*
* The MIT License (MIT) * The MIT License (MIT)
* *
* Copyright (c) 2020 MM32 SE TEAM * Copyright (c) 2020 MM32 SE TEAM