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:
- User triggers the device to begin reading the sensors by calling order_read().
- order_read() asserts the first device and clocks blank data (because only the MISO line is cared about).
- 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.
- 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