Part Number: TMS320F28379D
Other Parts Discussed in Thread: C2000WARE
Hello,
I am trying to transmit data through SCI in asynchronous mode continuously with a baud rate of 6.25 Mbps.
I have a interrupt enabled at 30 kHz and during the ISR and the following is performed within the interrupt.
for (i = 0; i <2; i++) // Transmitting three integers within the ISR
{
TX [i] = i+1;
sci_xmit(TX[i]);
}
When visualizing the data in the scope, only 2 of them are transmitted in every ISR. I checked if the baud rate is impacting this and it is not so.
Why am I always losing the third packet. Please help me debug this.
SCI FIFO initializations: TXFFST = 0; SCIO FIFO enhancements disabled and SCI Reset disabled
Regards,
Radha