File tree Expand file tree Collapse file tree 7 files changed +14
-15
lines changed Expand file tree Collapse file tree 7 files changed +14
-15
lines changed Original file line number Diff line number Diff line change 2626/* Entry Point */
2727ENTRY (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 */
3630MEMORY
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 */
4343SECTIONS
4444{
@@ -173,4 +173,4 @@ SECTIONS
173173 }
174174
175175 .ARM .attributes 0 : { *(.ARM .attributes ) }
176- }
176+ }
Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ function(update_board TARGET)
77 target_compile_definitions (${TARGET} PUBLIC
88 STM32U083xx
99 )
10- endfunction ()
10+ endfunction ()
Original file line number Diff line number Diff 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_ */
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ LD_FILE = $(BOARD_PATH)/STM32U083MCTx_FLASH.ld
99JLINK_DEVICE = STM32U083MC
1010
1111# flash target using on-board stlink
12- flash : flash-stlink
12+ flash : flash-stlink
Original file line number Diff line number Diff line change @@ -179,4 +179,4 @@ void HardFault_Handler(void) {
179179// -nostdlib/-nostartfiles.
180180void _init (void ) {
181181
182- }
182+ }
Original file line number Diff line number Diff line change @@ -46,4 +46,4 @@ SRC_S_GCC += $(ST_CMSIS)/Source/Templates/gcc/startup_${MCU_VARIANT}.s
4646SRC_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
Original file line number Diff line number Diff line change 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 */
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"
335335#endif
336336
337337#endif /* __STM32U0xx_HAL_CONF_H */
338-
You can’t perform that action at this time.
0 commit comments