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:如何发送或接收 UART 数据数组?

Guru**** 2223470 points
Other Parts Discussed in Thread: LP-MSPM0G3507
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/tools/code-composer-studio-group/ccs/f/code-composer-studio-forum/1474985/lp-mspm0g3507-how-to-send-or-receive-uart-data-array

器件型号:LP-MSPM0G3507

工具与软件:

你好

我使用 LP-MSPM0G3507测试 UART 发送或接收。
但是、我找不到有关数据数组的 UART 函数。

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 =数据;
}

__static_inline uint8_t DL_UART_receiveData (UART_Regs * uart)

返回((uint8_t)(UART->RXDATA 和 UART_RXDATA_DATA_MASK));
}


我发现发送或接收 UART 函数是数据仅为1个字节。
如果我要发送或接收数据数组、如何使用什么 UART 函数?