Hallo,
auf dem XMC4700 Mikrocontroller wird ein Puffer von 0x10000 benötigt.
Wie kann man diesen Puffer in einen bestimmten RAM Bereich
festlegen/definieren?
Linker Skript XMC4700:
1 | MEMORY
|
2 | {
|
3 | FLASH_1_cached(RX) : ORIGIN = 0x08000000, LENGTH = 0x200000
|
4 | FLASH_1_uncached(RX) : ORIGIN = 0x0C000000, LENGTH = 0x200000
|
5 | PSRAM_1(!RX) : ORIGIN = 0x1FFE8000, LENGTH = 0x18000
|
6 | DSRAM_1_system(!RX) : ORIGIN = 0x20000000, LENGTH = 0x20000
|
7 | DSRAM_2_comm(!RX) : ORIGIN = 0x20020000, LENGTH = 0x20000
|
8 | SRAM_combined(!RX) : ORIGIN = 0x1FFE8000, LENGTH = 0x58000
|
9 | }
|