Hi,
I am using CC3200MOD. I tried to enable EOT interrupt on UARTA1.
I configured UART interrupt as following:
// // Set TX interrupt mode as End Of Transmission // UARTTxIntModeSet(UARTA1_BASE, UART_TXINT_MODE_EOT); // // Set maskable interrupt flag for Receive, transmit, & receive timeout // UARTIntEnable(UARTA1_BASE, UART_INT_RX | UART_INT_RT | UART_INT_EOT);
I am not able to get interrupt status as UART_INT_EOT. Instead am getting as UART_INT_TX.
Even I wanted to confirm whether Flow control can be implemented on UARTA0 and UARTA1 simultaneously?