File tree 2 files changed +4
-4
lines changed
variants/STM32L4xx/L412RB(I-T)xP
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 */
60
60
/* Specify the memory areas */
61
61
MEMORY
62
62
{
63
- RAM (xrw ) : ORIGIN = 0x20000000, LENGTH = 32K
63
+ RAM (xrw ) : ORIGIN = 0x20000000, LENGTH = LD_MAX_DATA_SIZE
64
64
RAM2 (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
66
66
}
67
67
68
68
/* Define output sections */
@@ -170,7 +170,7 @@ SECTIONS
170
170
. = ALIGN (4);
171
171
.bss :
172
172
{
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 */
174
174
_sbss = .; /* define a global symbol at bss start */
175
175
__bss_start__ = _sbss;
176
176
*(.bss)
Original file line number Diff line number Diff line change 109
109
#define TIMER_TONE TIM6
110
110
#endif
111
111
#ifndef TIMER_SERVO
112
- #define TIMER_SERVO TIM7
112
+ #define TIMER_SERVO TIM16
113
113
#endif
114
114
115
115
// UART Definitions
You can’t perform that action at this time.
0 commit comments