Skip to content

Commit 71d2ccd

Browse files
committed
Fix CI
1 parent 413b0a7 commit 71d2ccd

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

hw/bsp/stm32g0/boards/stm32g0b1nucleo/STM32G0B1RETx_FLASH.ld

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ SECTIONS
134134
_sidata = LOADADDR(.data);
135135

136136
/* Initialized data sections goes into RAM, load LMA copy after code */
137-
.data :
137+
.data :
138138
{
139139
. = ALIGN(4);
140140
_sdata = .; /* create a global symbol at data start */
@@ -145,12 +145,12 @@ SECTIONS
145145
_edata = .; /* define a global symbol at data end */
146146
} >RAM AT> FLASH
147147

148-
148+
149149
/* Uninitialized data section */
150150
. = ALIGN(4);
151151
.bss :
152152
{
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 */
154154
_sbss = .; /* define a global symbol at bss start */
155155
__bss_start__ = _sbss;
156156
*(.bss)
@@ -173,7 +173,7 @@ SECTIONS
173173
. = ALIGN(8);
174174
} >RAM
175175

176-
176+
177177

178178
/* Remove information from the standard libraries */
179179
/DISCARD/ :
@@ -185,5 +185,3 @@ SECTIONS
185185

186186
.ARM.attributes 0 : { *(.ARM.attributes) }
187187
}
188-
189-

hw/bsp/stm32g0/boards/stm32g0b1nucleo/board.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ static inline void board_clock_init(void)
6767
/** Tick priority is used in HAL_RCC_OscConfig, so we need to enable it now
6868
*/
6969
HAL_InitTick(0);
70-
70+
7171
/** Configure the main internal regulator output voltage
7272
*/
7373
HAL_PWREx_ControlVoltageScaling(PWR_REGULATOR_VOLTAGE_SCALE1);

hw/bsp/stm32g0/family.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/*
22
* The MIT License (MIT)
33
*
44
* Copyright (c) 2019 Ha Thach (tinyusb.org)

hw/bsp/stm32g0/family.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ include $(TOP)/$(BOARD_PATH)/board.mk
1111
# --------------
1212
CFLAGS += \
1313
-DCFG_TUSB_MCU=OPT_MCU_STM32G0
14-
14+
1515
# GCC Flags
1616
GCC_CFLAGS += \
1717
-flto \

0 commit comments

Comments
 (0)