We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d872cb1 commit f6dea1eCopy full SHA for f6dea1e
2 files changed
STM32F4/variants/generic_f407v/ld/common.inc
@@ -183,6 +183,15 @@ SECTIONS
183
} > REGION_BSS
184
185
/*
186
+ * .ccmram
187
+ */
188
+ .ccmram (NOLOAD):
189
+ {
190
+ . = ALIGN(8);
191
+ *(.ccmram .ccmram.*)
192
+ } > ccmram
193
+
194
+ /*
195
* Debugging sections
196
*/
197
.stab 0 (NOLOAD) : { *(.stab) }
STM32F4/variants/generic_f407v/ld/jtag.ld
@@ -5,8 +5,9 @@
5
6
MEMORY
7
{
8
- ram (rwx) : ORIGIN = 0x20000000, LENGTH = 128K
9
- rom (rx) : ORIGIN = 0x08000000, LENGTH = 512K
+ ccmram (rw): ORIGIN = 0x10000000, LENGTH = 64K
+ ram (rwx) : ORIGIN = 0x20000000, LENGTH = 128K
10
+ rom (rx) : ORIGIN = 0x08000000, LENGTH = 512K
11
}
12
13
/* GROUP(libcs3_stm32_high_density.a) */
0 commit comments