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.
I'm referring to the following code corresponding to the SCIA-FIFO-TX interrupt service routine of Example_2833xSci_FFDLB_int.c
__interrupt void sciaTxFifoIsr(void)
{
Uint16 i;
for(i=0; i< 8; i++)
{
SciaRegs.SCITXBUF=sdataA[i]; // Send data
}
for(i=0; i< 8; i++) //Increment send data for next cycle
{
sdataA[i] = (sdataA[i]+1) & 0x00FF;
}
SciaRegs.SCIFFTX.bit.TXFFINTCLR=1; // Clear SCI Interrupt flag
PieCtrlRegs.PIEACK.all|=0x100; // Issue PIE ACK
}
8-bytes are loaded into SCI TX FIFO, when an interrupt occurs. But when are they sent? After the ISR loop execution or as and when it is loaded? Is each word cleared from FIFO after it is sent?
For the interrupt to occur again (after the flag is cleared), TXFFST <= TXFFIL. After the 8 words are loaded in FIFO, TXFFST=8. But when does TXFFST change to 7, before clearing the flag or after clearing the flag? Let's say one word is sent by the time the interrupt flag is cleared, i.e. TXFFST=7. Therefore the interrupt occurs again. I would like to make sure that an interrupt occurs only after all the 8 words are sent, i.e. when TXFFST=0. How to achieve this?