Other Parts Discussed in Thread: CC1352P
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。
器件型号: CC1352P
尊敬的 Sirs:
我强制使用 UART 来变压器 2Mbps 数据。
实践后、UART 最大变压器速度 高于 1Mbps。
它与 CC1352P 数据表不匹配、如下图所示。
您能否提供任何将 UART 速度升级到 3Mbps 的命令?


谢谢
Jacky
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.
您好 Jacky、
以下示例来自 drivers/uart2echo 应用示例 (uart2echo.c)。 您可以在 params.baudrate 变量中设置波特率。
/* Create a UART where the default read and write mode is BLOCKING */
UART2_Params_init(&uartParams);
uartParams.baudRate = 115200;
谢谢、
Marie H