File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
STM32F4/variants/generic_f407v/ld Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,9 +38,9 @@ EXTERN(start_c)
3838/* main entry point */
3939EXTERN(main)
4040
41- /* Initial stack pointer value. Relocated to CCMRAM */
41+ /* Initial stack pointer value. */
4242EXTERN(__msp_init)
43- PROVIDE(__msp_init = ORIGIN(ccmram ) + LENGTH(ccmram ));
43+ PROVIDE(__msp_init = ORIGIN(ram ) + LENGTH(ram ));
4444
4545/* Reset vector and chip reset entry point */
4646EXTERN (__start__)
@@ -150,7 +150,7 @@ SECTIONS
150150 * I'm shoving these here naively; there's probably a cleaner way
151151 * to go about this. [mbolivar]
152152 */
153- _lm_heap_start = DEFINED (_lm_heap_start) ? _lm_heap_start : __ccmdata_end__ ;
153+ _lm_heap_start = DEFINED (_lm_heap_start) ? _lm_heap_start : __bss_end__ ;
154154 _lm_heap_end = DEFINED (_lm_heap_end) ? _lm_heap_end : __msp_init;
155155 } > REGION_RODATA
156156
You can’t perform that action at this time.
0 commit comments