Part Number: MSP430F5659
Tool/software: Code Composer Studio
Hi,
What I need to to write to the information memeory segment A from the program ?
I can write to all other sements this way:
unsigned char *addr;
addr = 0x1980; //seg A
FCTL3 = FWKEY;
FCTL1 = FWKEY + WRT;
//write something
*addr = 0x55;
FCTL1 = FWKEY;
FCTL3 = FWKEY + LOCK;
This code is working in Code Composer V4 version.
What I need to do to solve it ?
