I am using an MSP-FET430UIF debug interface and an MSP430i2030 chip. Initially, I tried burning the following code:
#include <msp430.h>
int main(void) {
WDTCTL = WDTPW | WDTHOLD;
return 0;
}
Everything went well and the code was loaded (as displayed on the console).
However, on loading the standard LED code (by selecting Blink project with main during creation of project), I got the below error:
And following was displayed on the console:
MSP430: File Loader: Verification failed: Values at address 0xFFE2 do not match Please verify target memory and memory map.
MSP430: GEL: File: C:\Users\Lenovo\workspace_v6_1_3\fall\Debug\fall.out: a data verification error occurred, file load failed.
I am unable to run the LED program due to this problem. Can anyone please indicate what should be done to overcome the same.
Other Details: CCS (V 6.1.3), Windows 8.1, Bread board circuit, MSP430i2030
