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.
工具/软件:TI-RTOS
你好! 我想将 stdio 从 UART3更改为 UART1。
我连接到名为 P18的连接器的引脚30 (UART1_TXD)和引脚60 (UART1_RXD)。
要在 boardPadDelayInit.c 中添加"const boardPadDelayCfg_t pad[]"、我添加以下行:
/* UART1 - B27上的 uart1_RxD - MyUART1 */
{0x17E0、0xE0000、{0x0、0}、 {0x0、0、0}、{0x0、0、 0}}、
/* UART1 - C26上的 uart1_TxD - MyUART1 *
{0x17E4、0xA0000、{0x0、0、0}、 {0x0、0、0}、{0x0、0、 0}}、
要初始化 stdio、请使用参数0的函数 UART_stdioInit。 一.e:
UART_stdioInit (0);
但它不起作用。 我出了什么问题。
处理器是 CortexA15。