Hi,
I am using MSP430FR5739 and i need to convert double "51.11635910984" to char. when i use sprintf function it says "#10099-D program will not fit into". RAM is not enough for this operation and i want to use FRAM.
So, I tried to change the size of FRAM in the linker command file. However, a problem was occured when i debug the code not in build.
//FRAM_DATA : origin = 0xC200, length = 0x0BE0 //original
//FRAM : origin = 0xCDE0, length = 0x31A0 //original
FRAM_DATA : origin = 0x2000, length = 0x0BE0 // i changed
FRAM : origin = 0x3000, length = 0xC000 // i changed
The problem output is
"MSP430: File Loader: Data verification failed at address 0x00003000 Please verify target memory and memory map.
MSP430: GEL: File: C:\WebBasic\GET_v.1.7\source\apps\MSP-EXP430FR5739\webserver\CCS\webserver\Debug\webserver.out: a data verification error occurred, file load failed."