I am trying to transfer 1MB text file between my devices using software flow control which is working fine.
But when I try to use the following system,
i.e
UART UART
<My device> <------------> MSP430FR5739 <------------> <My device>
Here the FR5739 just copying the RX register data into TX register in the ISR as follows,
UCA1TXBUF = UCA0RXBUF;
But I am losing lot of data in between. I am running the MCU at 24MHz.
What could be the reason for this?