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.

Using I2C to read the SODIMM SPD

Status
Not open for further replies.

asi123

Newbie level 6
Joined
Mar 5, 2010
Messages
13
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
Israel
Activity points
1,498
Hey guys.

I'm trying to read the SPD of my SODIMM: MT4HTF3264HY.

This is what I did:

int main()
{

int Initialize_Result, Start_Result, SetAddress_Result, MasterRecv_Result;
XIic InstancePtr;
u8 RxMsg;

init_platform();

Initialize_Result = XIic_Initialize(&(InstancePtr), XPAR_IIC_0_DEVICE_ID);

XIic_InterruptHandler(&(InstancePtr));

SetAddress_Result = XIic_SetAddress(&(InstancePtr), XII_ADDR_TO_SEND_TYPE, 0x50);

Start_Result = XIic_Start(&(InstancePtr));

MasterRecv_Result = XIic_MasterRecv(&(InstancePtr), &(RxMsg), 1);

return 0;

}

Where am I suppose to get the value from the SPD?

Thanks a lot.

Assaf.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top