This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMS320F28335: F28335 MAX31856 SPI

Part Number: TMS320F28335

 

I am trying to do SPI communication with MAX31856 (temperature measurement) using TMS320F28335.

0x0c is transmitted in the first byte
Transmit the remaining 3 bytes 0x00.

The problem is that the values received are not constant and are displayed as 254 or 255.

In my opinion, I think that communication is going on. (It may not be.)

Also, I think there is nothing wrong with the hardware connection.

Below is the code I wrote, I think there is an error in the received value.

What could be causing this?

Thanks for your help.

while(SpiaRegs.SPISTS.bit.BUFFULL_FLAG);
    TxData[0]=0x0c;
    SpiaRegs.SPITXBUF = (TxData[0]<<8);

    while(SpiaRegs.SPISTS.bit.BUFFULL_FLAG);
    TxData[1]=0x00; //dummy byte
    SpiaRegs.SPITXBUF = TxData[1];

    while(SpiaRegs.SPISTS.bit.BUFFULL_FLAG);
    TxData[2]=0x00;
    SpiaRegs.SPITXBUF = TxData[2];

    while(SpiaRegs.SPISTS.bit.BUFFULL_FLAG);
    TxData[3]=0x00;
    SpiaRegs.SPITXBUF = TxData[3];

    for(i=0;i<4;i++)
    {
        RxData[i] = SpiaRegs.SPIRXBUF;
    }

  • Hi,

    Have you enabled RX FIFO?

    Are you saying that the MAX31856 device is successfully sending the data, but the RXDAT contents are incorrect?

    Regards,

    Veena

  • Hello.

    I did not enable RX fifo.

    I think that it is normally sent from TX, but I think that the RX value cannot be read normally.

    Should I implement Fifo?

    Thank you for answer.

  • Hi,

    Since I see you reading from RXBUF back to back, hence asked.

    If you are not using RX FIFO, you need to read the data after every transfer, else the RXBUF contents will be replaced by the new data.

    Regards,

    Veena

  • Hi,

    I got the same result in non-FIFO mode.

    There is no change to the Rx value.

    Do I need to set a flag?

    Thanks for your reply.

  • Hi,

    Are you reading RX DATA after every TX?

    Eg:

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    for(;;)
    {
    //
    // Transmit data
    //
    SpiaRegs.SPITXBUF = sData;
    //
    // Wait until data is received
    //
    while(SpiaRegs.SPIFFRX.bit.RXFFST != 1)
    {
    }
    //
    // Check against sent data
    //
    rdata = SpiaRegs.SPIRXBUF;
    if(rdata != sdata)
    {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Have you checked the data coming out of MAX31856  (using a scope or logic analyzer)? Is it sending the data as expected?

    Regards,

    Veena

  • Hello
    
    The current temperature value is being output.
    The problem is that I have to reconnect the mosi pin to receive the temperature value. Is it a problem with the max31856 chip?
    
    Also, can I use multiple the address register ?
    
    Thanks for your reply.
  • Hi,

    If the pins are accessible, you can use an oscilloscope/ logic analyzer to monitor if the data is send by the MAX31856  chip or not

    Also, can I use multiple the address register ?

    I did not get this question. Is this something specific to MAX31856?

    Regards,

    Veena

  • Hi

    Yes for the MAX31856.

    Sorry, but I have one question.
    Is it possible to delay the clock while the CS pin is held LOW?

    thank you for the reply.

  • You can drive the CS pin via software. To do this, configure the the pin as GPIO and use GPIO registers to drive the pin high/low

    Regards,

    Veena

  • Thank you for answer.

    GpioDataRegs.GPBMUX2.bit.GPIO57 =0; After setting to

    GpioDataRegs.GPBCLEAR.bit.GPIO57=1; as
    I checked after the change, but there is no change in the CS pin in the High state.

    Is there something wrong with my code?

  • Hi,

    You meant GpioCtrlRegs.GPBMUX2, right? Have you enabled EALLOW before this write? You can check the actual value in the Registers view

    Regards,

    Veena