File tree Expand file tree Collapse file tree 4 files changed +7
-9
lines changed Expand file tree Collapse file tree 4 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ SECTIONS
134
134
_sidata = LOADADDR (.data);
135
135
136
136
/* Initialized data sections goes into RAM, load LMA copy after code */
137
- .data :
137
+ .data :
138
138
{
139
139
. = ALIGN (4);
140
140
_sdata = .; /* create a global symbol at data start */
@@ -145,12 +145,12 @@ SECTIONS
145
145
_edata = .; /* define a global symbol at data end */
146
146
} >RAM AT> FLASH
147
147
148
-
148
+
149
149
/* Uninitialized data section */
150
150
. = ALIGN (4);
151
151
.bss :
152
152
{
153
- /* This is used by the startup in order to initialize the .bss secion */
153
+ /* This is used by the startup in order to initialize the .bss section */
154
154
_sbss = .; /* define a global symbol at bss start */
155
155
__bss_start__ = _sbss;
156
156
*(.bss)
@@ -173,7 +173,7 @@ SECTIONS
173
173
. = ALIGN (8);
174
174
} >RAM
175
175
176
-
176
+
177
177
178
178
/* Remove information from the standard libraries */
179
179
/DISCARD/ :
@@ -185,5 +185,3 @@ SECTIONS
185
185
186
186
.ARM.attributes 0 : { *(.ARM.attributes) }
187
187
}
188
-
189
-
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ static inline void board_clock_init(void)
67
67
/** Tick priority is used in HAL_RCC_OscConfig, so we need to enable it now
68
68
*/
69
69
HAL_InitTick (0 );
70
-
70
+
71
71
/** Configure the main internal regulator output voltage
72
72
*/
73
73
HAL_PWREx_ControlVoltageScaling (PWR_REGULATOR_VOLTAGE_SCALE1 );
Original file line number Diff line number Diff line change 1
- /*
1
+ /*
2
2
* The MIT License (MIT)
3
3
*
4
4
* Copyright (c) 2019 Ha Thach (tinyusb.org)
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ include $(TOP)/$(BOARD_PATH)/board.mk
11
11
# --------------
12
12
CFLAGS += \
13
13
-DCFG_TUSB_MCU=OPT_MCU_STM32G0
14
-
14
+
15
15
# GCC Flags
16
16
GCC_CFLAGS += \
17
17
-flto \
You can’t perform that action at this time.
0 commit comments