This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Load program error ("data verification error") MSP430F2410

Other Parts Discussed in Thread: MSP430F2410

I have IAR to CCS ported code.

I can able to compile the code without any warnings. MCU :MSP430F2410

IDE: CCS V.6.0.1.00040

When i try to flash(debug mode) the code, it is giving me the below error

When i create a simple new project like below it is flashing without any problem.

int main(void) {
    WDTCTL = WDTPW | WDTHOLD;	// Stop watchdog timer
	
    while(1);
	return 0;
}

What are the possibilities of this issue..