I'm trying to configure the McBSP on the OMAPL138 and I would like to synchronize the Rx and Tx streams.
Is there a way I can use the DIO driver that allows me to Sync the streams?
Note: the hardware configuration prevents me from using an external loopback on the clock pins.
The library function is:
SIO_Handle SIO_create(String name, Int mode, size_t size, SIO_Attrs *attrs);
where mode is either SIO_INPUT or SIO_OUTPUT and when this function executes that channel is started.
So how do I start both streams at the same time?
Thanks