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: SPI TX or RX Interrupt Setup to Fire After Every Transaction

Part Number: TMS320F28379D
Other Parts Discussed in Thread: C2000WARE

Hello,

I have written a small little helper library that is supposed to cycle between four different sensors when triggered. The process is intended to go as follows:

  1. User triggers the device to begin reading the sensors by calling order_read(). 
  2. order_read() asserts the first device and clocks blank data (because only the MISO line is cared about).
  3. The Tx or Rx interrupt is triggered at the end of the transaction. It deasserts the previous device, asserts the next device, and begins the transaction for the newly asserted sensor.
  4. Repeat step 3 until all sensors have been read.

However, I can get neither the Tx nor the Rx interrupt to fire. I've tried the following combinations to trigger the ISR:

  • SPI_INT_RXFF interrupt to trigger on the SPI_FIFO_RX1 condition
  • SPI_INT_RX_DATA_TX_EMPTY
  • SPI_INT_TXFF interrupt to trigger on the SPI_FIFO_TXEMPTY condition

See the code below. I have included all of the different config combinations, but left them commented out. The code is currently configured to trigger the SPI_INT_TXFF interrupt on FIFO EMPTY. 

Again, I am unable to observe that any of the interrupt service routines are running. A breakpoint set in the ISR is never hit, and the chip select lines that are supposed to be cycled are never switched. Any guidance as to what could be configured wrong here would be much appreciated.

Thanks,
Owen

  • Hi Owen,

    It could be that you are configuring SPIC, yet you are enabling interrupts for SPIA.

  • Hi Gus,

    Thanks for the response. Thanks for pointing out that typo with SPIA interrupt stuff. Unfortunately, the behavior is the same when everything is changed over to SPIC. Can you see anything else wrong with this? FWIW, this is running on CPU2 and I am delegating every pin to CPU2 using the three calls shown below (repeated for each of the CS pins, as well as the MOSI, MISO, and SCLK pins).

  • Owen,

    Some suggestions:

    - Verify if there is activity in the SPI pins. 

    - Use CCS to view the SPI registers, make sure they are showing your desired configuration.

    - Leverage an existing C2000ware example to get started.