[ARM] MSP430FR6989 issue with flash integrity check

Status
Not open for further replies.

amsbhole07@gmail.com

Newbie level 4
Joined
Oct 26, 2010
Messages
6
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,324
I am working on the project for MSP430FR6989 and wanted to read the data of internal FRAM
below is the code in which i am passing the address length and data to be stored and i am expecting the result as mention in the txt file 4F,14,F1 please advice me for the same


Code C - [expand]
1
2
3
4
5
6
7
8
9
10
11
12
readResult = boot_readMemory(0x8800,2,data);//8800
 
char boot_readMemory(unsigned long addr, unsigned int length, char* data)
{
    unsigned long i;
 
    for (i = addr + length - 1; i >= addr; i--)
    {
       data[i - addr] = __data20_read_char(i);
    }
    return 0;
}

 

Attachments

  • prjct.txt
    247.5 KB · Views: 66
Last edited by a moderator:

Status
Not open for further replies.

Similar threads

Cookies are required to use this site. You must accept them to continue using the site. Learn more…