Other Parts Discussed in Thread: TMS320F28035
I want to set up interrupt when Fifo transmit is empty in TMS320F28035. I am looking at the example "scia_loopback_interrupts" for reference. Following two lines in the function "scia_fifo_init" sets up the interrupt enable.
SciaRegs.SCICTL2.bit.TXINTENA =1;
SciaRegs.SCICTL2.bit.RXBKINTENA =1;
The bits are meant for non fifo inerrupts.I thought one should use Fifo interrupt bits for enabling Fifo inerrupts(SCIFFENA and RXFFIENA).
My receive interrupt works well when I use RXFFIENA but my transmit interrupt does not work when I use SCIFFENA. Help please !