hi, I want to have one program flash of 64 kB in UCD3138064x (no dual images and switching between two images, one simple 64 kB image)
I did start to work on Lab examples and the linker file cyclone_64.cmd is configured only for 32 kB program flash
/*------------------------------------------------------------------------------------*/ /* P-Flash 32K */ /*------------------------------------------------------------------------------------*/ PFLASH (RX) : org = 0x00000020, len = 0x00007F38 /* PFlash Main Program */ DEVICEID (RX) : org = 0x00007F58, len = 0x00000020 /* Fixed Location for DEVICE_ID*/ FIXTFA (RX) : org = 0x00007F78, len = 0x00000004 /* Fixed Step Size for TFA */ FIXCONST (RX) : org = 0x00007F7C, len = 0x00000080 /* Fixed-location Constants */ FLASHSUM (RX) : org = 0x00007FFC, len = 0x00000004 /* Flash Checksum */
is it enough to change everything into 64 kB to use full program memory or do I have to do something else?
PFLASH (RX) : org = 0x00000020, len = 0x0000FF38 /* PFlash Main Program */ DEVICEID (RX) : org = 0x0000FF58, len = 0x00000020 /* Fixed Location for DEVICE_ID*/ FIXTFA (RX) : org = 0x0000FF78, len = 0x00000004 /* Fixed Step Size for TFA */ FIXCONST (RX) : org = 0x0000FF7C, len = 0x00000080 /* Fixed-location Constants */ FLASHSUM (RX) : org = 0x0000FFFC, len = 0x00000004 /* Flash Checksum