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.

LP-MSPM0G3507: How to send or receive Uart data array?

Part Number: LP-MSPM0G3507

Tool/software:

Hello

I'm test uart send or receive with LP-MSPM0G3507.
but, I can't found uart function about data array.

gps_data = DL_UART_Main_receiveData(UART0_INST);
DL_UART_Main_transmitData(UART1_INST, gps_data);

__STATIC_INLINE void DL_UART_transmitData(UART_Regs *uart, uint8_t data)
{
uart->TXDATA = data;
}

__STATIC_INLINE uint8_t DL_UART_receiveData(UART_Regs *uart)
{
return ((uint8_t)(uart->RXDATA & UART_RXDATA_DATA_MASK));
}


I found send or receive uart function is data only 1 byte.
if I want to send or receive data array, how can use what uart function?