This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Fill out data at the specific address in scatter file

Hi,
I'd like to port GNU linker file into scatter file format.
One section will write some data (include region's base and length) to fixed address in flash.
Any one knows how to translate below's code to scatter file?
Thanks.

.spi_flash_Info_table_entry : {
LONG(0x11111111);

LONG(0x22222222);

LONG(0x33333333);

LONG(0x44444444);

BYTE(FW_VERSION_NUMBER);

BYTE(CLIIP_VERSION_NUMBER);

BYTE(ACT2_FW_RELEASE_VERSION_1);

BYTE(ACT2_FW_RELEASE_VERSION_2);

LONG(0);

LONG(0);

LONG(0);

LONG(CORE_FW_MODULE); LONG(SF_CODE_START_ADDR_OFFSET); LONG(__ramCode_end__ - __ramCode_start__); LONG(0); LONG(0); LONG(0); LONG(0);
}