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.

如何将Display模块的串口更换到其他IO?

Genius 3030 points

查看了相关代码,没有发现配置display模块的UART配置,

 *  @code
 *  #include <ti/display/Display.h>
 *  #include <ti/display/DisplayUart.h>
 *  #include <ti/display/AnsiColor.h>
 *
 *  #define MAXPRINTLEN 128
 *
 *  DisplayUart_Object displayUartObject;
 *  static char uartStringBuf[MAXPRINTLEN];
 *
 *  const DisplayUart_HWAttrs displayUartHWAttrs = {
 *      .uartIdx      = Board_UART,
 *      .baudRate     = 115200,
 *      .mutexTimeout = BIOS_WAIT_FOREVER,
 *      .strBuf       = uartStringBuf,
 *      .strBufLen    = MAXPRINTLEN,
 *  };

以上的 Board_UART是在哪里用到的?