Skip to content

Commit a378d4f

Browse files
committed
stm32f469 added missing ccm section to multisection table
1 parent ebc5d7f commit a378d4f

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

targets/chip/stm32f469/linkerscript.ld

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ SECTIONS
113113
PROVIDE(__bss_end = .);
114114
} > ram0
115115

116+
/* ccm memory */
117+
DATA_SECTION(ccm, ccm, rom)
118+
BSS_SECTION(ccm, ccm)
119+
116120
/* fmc memory */
117121
DATA_SECTION(fmc0, fmc0, rom)
118122
DATA_SECTION(fmc1, fmc1, rom)
@@ -125,6 +129,7 @@ SECTIONS
125129

126130
/* create a table to initialize the data sections on a secondary memory */
127131
DATA_MULTISECTION_TABLE(
132+
DATA_SECTION_ENTRY(ccm)
128133
DATA_SECTION_ENTRY(fmc0)
129134
DATA_SECTION_ENTRY(fmc1)
130135
DATA_SECTION_ENTRY(fmc2)
@@ -134,6 +139,7 @@ SECTIONS
134139

135140
/* create a table to initialize the bss sections on a secondary memory */
136141
BSS_MULTISECTION_TABLE(
142+
BSS_SECTION_ENTRY(ccm)
137143
BSS_SECTION_ENTRY(fmc0)
138144
BSS_SECTION_ENTRY(fmc1)
139145
BSS_SECTION_ENTRY(fmc2)

0 commit comments

Comments
 (0)