We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e02ebb commit f4418e2Copy full SHA for f4418e2
variants/PORTENTA_H7_M7/linker_script.ld
@@ -7,7 +7,8 @@ MEMORY
7
RAM (xrw) : ORIGIN = 0x24000000 + 0x298, LENGTH = 512K - 0x298
8
RAM_D2 (xrw) : ORIGIN = 0x30000000, LENGTH = 288K
9
OPENAMP_RSC_TAB (rwx) : ORIGIN = 0x38000000, LENGTH = 1K
10
- OPEN_AMP_SHMEM (rwx) : ORIGIN = 0x38000400, LENGTH = 63K
+ OPEN_AMP_SHMEM (rwx) : ORIGIN = 0x38000400, LENGTH = 62K
11
+ PDM_MEM (xrw) : ORIGIN = 0x3800FC00, LENGTH = 1k
12
FLASH (rx) : ORIGIN = 0x8040000, LENGTH = 0xc0000
13
}
14
__OPENAMP_region_start__ = ORIGIN(OPEN_AMP_SHMEM);
@@ -110,6 +111,10 @@ SECTIONS
110
111
. = ABSOLUTE(0x38000000);
112
*(.resource_table)
113
} >OPENAMP_RSC_TAB AT > FLASH
114
+ .pdm_section (NOLOAD) : {
115
+ . = ABSOLUTE(0x3800FC00);
116
+ *(.pdm_buffer)
117
+ } > PDM_MEM
118
.stack_dummy (COPY):
119
{
120
*(.stack*)
0 commit comments