Part Number:MSP432P4111
Hi,
Wanted to know if it is possible to store output image to two separate location in Main memory
MEMORY { FLASH1 (RX) : origin = 0x00000000, length = 0x00100000 FLASH2 (RX) : origin = 0x00100000, length = 0x00100000 INFO (RX) : origin = 0x00200000, length = 0x00008000 ALIAS { SRAM_CODE (RWX): origin = 0x01000000 SRAM_DATA (RW) : origin = 0x20000000 } length = 0x00040000 } /* Section allocation in memory */ SECTIONS { .text : {} >> FLASH1 | FLASH2 .const : {} >> FLASH1 | FLASH2 .cinit : {} >> FLASH1 | FLASH2 .pinit : {} >> FLASH1 | FLASH2 .init_array : {} >> FLASH1 | FLASH2 .....
.....
}
This is the current memory layout I have, I want the FLASH2 Area should also get populated with the same data as FLASH1
Thanks