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?