Is there a way to configure the SimpleLink TI SPI driver such that the receive path automatically fills a ring buffer like the UART ring buffer driver? My application requires this functionality on SPI but the SPI driver documentation doesn't include it. Maybe wishful thinking on my part but I'm hoping the feature is there. Please advise.
In the worst case, I'm thinking I could use driverlib along with the ring buffer utility to make my own interrupt based SPI receiver that calls RingBuf_put() in the ISR. My application would then call RingBuf_get() to consume the data from the ring buffer. Let me know if there is any limitation to consider for implementing something like that.
Thanks