File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
variants/STM32L4xx/L412RB(I-T)xP Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -60,9 +60,9 @@ _Min_Stack_Size = 0x400; /* required amount of stack */
6060/* Specify the memory areas */
6161MEMORY
6262{
63- RAM (xrw) : ORIGIN = 0x20000000 , LENGTH = 32K
63+ RAM (xrw) : ORIGIN = 0x20000000 , LENGTH = LD_MAX_DATA_SIZE
6464RAM2 (xrw) : ORIGIN = 0x10000000 , LENGTH = 8K
65- FLASH (rx) : ORIGIN = 0x8000000 , LENGTH = 128K
65+ FLASH (rx) : ORIGIN = 0x8000000 + LD_FLASH_OFFSET , LENGTH = LD_MAX_SIZE - LD_FLASH_OFFSET
6666}
6767
6868/* Define output sections */
@@ -170,7 +170,7 @@ SECTIONS
170170 . = ALIGN (4 );
171171 .bss :
172172 {
173- /* This is used by the startup in order to initialize the .bss secion */
173+ /* This is used by the startup in order to initialize the .bss section */
174174 _sbss = .; /* define a global symbol at bss start */
175175 __bss_start__ = _sbss;
176176 *(.bss )
Original file line number Diff line number Diff line change 109109 #define TIMER_TONE TIM6
110110#endif
111111#ifndef TIMER_SERVO
112- #define TIMER_SERVO TIM7
112+ #define TIMER_SERVO TIM16
113113#endif
114114
115115// UART Definitions
You can’t perform that action at this time.
0 commit comments