Other Parts Discussed in Thread: MSP432WARE
when i use uart0 to send data to 2g modern and have a interrupt to received data transmitted to uart1 which is printf to pc
if (status & EUSCI_A_UART_RECEIVE_INTERRUPT_FLAG)
{
u8RecvData = UART_receiveData(EUSCI_A0_BASE);
UART_transmitData(EUSCI_A1_BASE, u8RecvData);
but when i send data to 2g modern, the program is stopped in MAP_UART_transmitData(EUSCI_A0_BASE, a_pu8Buf[u16Index]);
and i find that UCTXIFG is 0, and it halt because UCTXIFG is not 1, but i don't know who set UCTXIFG to 0
