I examined my linker memory configuration and it contains errors, however, it somehow worked in the previous release.
user.ldt:
NV_STORAGE_SECTOR_SIZE = ( 2 * 1024 );
NV_STORAGE_MAX_SECTORS = (4);
NV_STORAGE_START_ADDRESS = ((0x0007FFFF) - ( 2 * 1024 ) + 1) - 1;
NV_STORAGE_END_ADDRESS = NV_STORAGE_START_ADDRESS - (NV_STORAGE_MAX_SECTORS * NV_STORAGE_SECTOR_SIZE) + 1;
.cproject:
<memoryInstance derived_from="Flash" driver="FTFA_2K.cfx" edited="true" id="PROGRAM_FLASH" location="0x0" size="0x7ff00"/>
<memoryInstance derived_from="Flash" edited="true" id="NVM_TABLE_FLASH" location="0x7ff00" size="0x100"/>
Memory locations in user.ldt refer to space reserved for PROGRAM_FLASH, which is not right. I resized NVM_TABLE_FLASH and now all is good.