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.

TMS320F28379D: Unable to receive the data while using TMS320F28335 as master and TMS320F28379D as slave during SPI communication.

Part Number: TMS320F28379D
Other Parts Discussed in Thread: TMS320F28335,

Tool/software:

Hi All, 

I am using TMS320F28335 as master and TMS320F28379D as slave in SPI communication. Initially, I did run the example loop back with an interrupt code on both controllers separately, and they did work fine. Later, I adjusted code in TMS28335 to just transmit data and TMS28379D to receive data.  The edited codes for master and slave are given below. 

Master: 

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Included Files
//
#include "DSP28x_Project.h" // Device Headerfile and Examples Include File
//
// Function Prototypes
//
//__interrupt void ISRTimer2(void);
__interrupt void spiTxFifoIsr(void);
void delay_loop(void);
void spi_fifo_init(void);
void error();
//
// Globals
//
Uint16 sdata; // Send data buffer
//
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Slave : 

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Included Files
//
#include "F28x_Project.h"
//
// Globals
//
Uint16 sdata[2]; // Send data buffer
Uint16 rdata; // Receive data buffer
Uint16 rdata_point; // Keep track of where we are
// in the data stream to check received data
Uint16 i;
//
// Function Prototypes
//
interrupt void spiTxFifoIsr(void);
interrupt void spiRxFifoIsr(void);
void delay_loop(void);
void spi_fifo_init(void);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

The problem here is that Master is able to transmit the data. which I cross-checked by measuring signals across CLK, SIMO pins, and the slave select line. but slave is unable to receive data. Could you please let me know if I am doing anything wrong in modifying code or anything else I have to change?

  • Hi Kranthi,

    If you are in master mode, transmitting data, and immediately attempting to read from the receive buffer, you may be reading corrupted data because you are reading too quickly and only part of the data has been received. Ensure the transmit FIFO level has space available before writing to TXBUF to transmit data. Inversely, check that the receive FIFO level to has the proper amount of complete and valid data characters received into RXBUF before reading from RXBUF.

    Please only provide relevant code with any comments removed.

    Best Regards,

    Aishwarya

  • Hi Aishwarya,

    I was initially facing issues because I hadn’t enabled the TX FIFO reset, but fortunately, I managed to troubleshoot all the code-related problems. However, I’ve encountered a new issue now. I have connected three TMS320F28379D slave controllers to a TMS320F28335 master, and I am transmitting sinusoidal signals from the master to the three slaves. The waveforms captured using the graph window in CCS are shown below.

     Fig.1

    The master generates the above waveform and transmits it to the slaves. While Slave 1 is receiving this signal, the slave select lines for Slaves 2 and 3 are kept high. I am using this approach to transmit the signal to all three slaves individually.

    The data received on slave 1 (slave 1 is connected to a PC) is shown below, and everything looks perfect.

    Fig. 2

    However, data received on slave 2 (slave 2 is connected to a laptop) has glitches, as shown below.

     Fig.3

    I connected Slave 1 to a laptop and Slave 2 to a PC, but I still noticed glitches in Slave 1. Could this be related to the USB version of the laptop? Also, the glitches seem to worsen when the laptop is plugged into the charger. I am using a 25 MHz SPI clock frequency. Any idea why this is happening?

  • Kranthi,

    Happy to hear that. It sounds like the SPI communication itself is working fine, but some graph has glitches. Refer to this guide to debug the Graph Tool: 7.7. Graph Tools — Code Composer Studio 12.8.0 Documentation

    Best Regards,

    Aishwarya

  • Hello Aishwarya ji,

    I went through the graph tools and verified that all parameters were set correctly, but the glitches persisted. Finally, I decided to change the power supply source for the TMS320F28379D slaves connected to the laptops, and everything is working perfectly now.

  • Kranthi,

    Thanks for the update. If you do not have any other questions, please mark this thread as closed. 

    Best Regards,

    Aishwarya