I'm using Ti pinMux 3.0.334 with the CC3200 Launchpad. PinMux has an error in assigning GPIO31 (pin 45) to UART1. It says it does it, but the code generated sets the pin to Mode_9 (UART0) rather than Mode_2 (UART1).
Peter
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.
I'm using Ti pinMux 3.0.334 with the CC3200 Launchpad. PinMux has an error in assigning GPIO31 (pin 45) to UART1. It says it does it, but the code generated sets the pin to Mode_9 (UART0) rather than Mode_2 (UART1).
Peter
Hi Peter,
Thanks for finding this out.
This was already in our bug list and forwarded to concern team.
In next TI-Pinmux release we will have this bug fixed.
Workaround: amend the generated pinmux code
MAP_PinTypeUART(PIN_45, PIN_MODE_9); // UART0_RX
MAP_PinTypeUART(PIN_45, PIN_MODE_2); // UART1_RX
Regards,
Jitendra
Jitendra,
Thanks, I figured it may already been found, but a search turned up nothing, so I decided to report it
Peter