hello team
im working with TMS570LS0432 controller with MIBSPI module.my slave device is 23LC1024 SRAM device.have configured using the HALCOGEN version4 .this my code
uint16 TX_Data[]={0xAA,0x55};
uint16 RX_Data[2];
mibspiInit(); //initializes the mibspi modul
mibspiSetData(mibspiREG1,0,TX_Data);//Set Buffer Data to the transfer group0
mibspiTransfer(mibspiREG1,0);//Initiates a transfer for the transfer group0.
while(!(mibspiIsTransferComplete(mibspiREG1,0))); //Checks to see if the transfer for the specified transfer group0 has finished.
mibspiGetData(mibspiREG1,0,RX_Data);//Retrieves Buffer Data from receive buffer
while(1);
for interfacing with sram
but m unable to read and write.plz help me.
thanks in advance