CC3200串口一使用的时候用PIN58和PIN59 为什么不行
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.
就是基于uart_demo改动的,我把pinmux.c里面的换成了
PRCMPeripheralClkEnable(PRCM_UARTA1, PRCM_RUN_MODE_CLK);
//
// Configure PIN_58 for UART1 UART1_TX
//
PinTypeUART(PIN_58, PIN_MODE_6);
//
// Configure PIN_59 for UART1 UART1_RX
//
PinTypeUART(PIN_59, PIN_MODE_6);
然后用杜邦线接板卡的58 59 引脚打印不了信息,将引脚换成7和8就可以使用了,不知道为啥