Skip to content

Commit 2f9f5c6

Browse files
committed
Fix ci
Signed-off-by: Mengsk <[email protected]>
1 parent 387c28a commit 2f9f5c6

File tree

7 files changed

+14
-15
lines changed

7 files changed

+14
-15
lines changed

hw/bsp/stm32u0/boards/stm32u083cdk/STM32U083MCTx_FLASH.ld

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@
2626
/* Entry Point */
2727
ENTRY(Reset_Handler)
2828

29-
/* Highest address of the user mode stack */
30-
_estack = ORIGIN(RAM) + LENGTH(RAM); /* end of "RAM" Ram type memory */
31-
32-
_Min_Heap_Size = 0x200; /* required amount of heap */
33-
_Min_Stack_Size = 0x400; /* required amount of stack */
34-
3529
/* Memories definition */
3630
MEMORY
3731
{
3832
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 40K
3933
FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 256K
4034
}
4135

36+
/* Highest address of the user mode stack */
37+
_estack = ORIGIN(RAM) + LENGTH(RAM); /* end of "RAM" Ram type memory */
38+
39+
_Min_Heap_Size = 0x200; /* required amount of heap */
40+
_Min_Stack_Size = 0x400; /* required amount of stack */
41+
4242
/* Sections */
4343
SECTIONS
4444
{
@@ -173,4 +173,4 @@ SECTIONS
173173
}
174174

175175
.ARM.attributes 0 : { *(.ARM.attributes) }
176-
}
176+
}

hw/bsp/stm32u0/boards/stm32u083cdk/board.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ function(update_board TARGET)
77
target_compile_definitions(${TARGET} PUBLIC
88
STM32U083xx
99
)
10-
endfunction()
10+
endfunction()

hw/bsp/stm32u0/boards/stm32u083cdk/board.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,4 @@ static inline void board_vbus_sense_init(void)
126126
}
127127
#endif
128128

129-
#endif /* BOARD_H_ */
129+
#endif /* BOARD_H_ */

hw/bsp/stm32u0/boards/stm32u083cdk/board.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ LD_FILE = $(BOARD_PATH)/STM32U083MCTx_FLASH.ld
99
JLINK_DEVICE = STM32U083MC
1010

1111
# flash target using on-board stlink
12-
flash: flash-stlink
12+
flash: flash-stlink

hw/bsp/stm32u0/family.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,4 +179,4 @@ void HardFault_Handler(void) {
179179
// -nostdlib/-nostartfiles.
180180
void _init(void) {
181181

182-
}
182+
}

hw/bsp/stm32u0/family.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ SRC_S_GCC += $(ST_CMSIS)/Source/Templates/gcc/startup_${MCU_VARIANT}.s
4646
SRC_S_IAR += $(ST_CMSIS)/Source/Templates/iar/startup_${MCU_VARIANT}.s
4747

4848
# Linker
49-
LD_FILE_IAR ?= $(ST_CMSIS)/Source/Templates/iar/linker/$(MCU_VARIANT)_flash.icf
49+
LD_FILE_IAR ?= $(ST_CMSIS)/Source/Templates/iar/linker/$(MCU_VARIANT)_flash.icf

hw/bsp/stm32u0/stm32u0xx_hal_conf.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@
164164
* of HAL callback registration/unregistration feature for the HAL
165165
* driver(s). This allows user application to provide specific callback
166166
* functions thanks to HAL_PPP_RegisterCallback() rather than overwriting
167-
* the default weak callback functions (see each stm32n6xx_hal_ppp.h file
167+
* the default weak callback functions (see each stm32u0xx_hal_ppp.h file
168168
* for possible callback identifiers defined in HAL_PPP_CallbackIDTypeDef
169169
* for each PPP peripheral).
170170
*/
@@ -254,7 +254,7 @@
254254

255255
#ifdef HAL_LCD_MODULE_ENABLED
256256
#include "stm32u0xx_hal_lcd.h"
257-
#endif /* HAL_LTDC_MODULE_ENABLED */
257+
#endif /* HAL_LCD_MODULE_ENABLED */
258258

259259
#ifdef HAL_OPAMP_MODULE_ENABLED
260260
#include "stm32u0xx_hal_opamp.h"
@@ -335,4 +335,3 @@
335335
#endif
336336

337337
#endif /* __STM32U0xx_HAL_CONF_H */
338-

0 commit comments

Comments
 (0)