Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[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: 65
Last edited by a moderator:

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top