Tool/software:
Hi MSP experts,
In our application, we initially use pins P2.0 and P2.1 for UART communication. After a certain time, the pins are no longer used and should be "inactive", there is no external hardware wiring at the pins.
Pins are configured as follows once used:
P2SEL0 |= (BIT1 | BIT0);
P2SEL1 &= ~(BIT1 | BIT0);
P2DIR |= (BIT1 | BIT0);
P2OUT &= ~(BIT1 | BIT0);
- Secondary module port function, output low
According to the user guide, the functionality of unused pins should be set to I/O function Output Low, which is why we have come up with the following questions:
1.Can the module override the pin configuration such as turning the UART RX pin into input instead of output low?
2.If so, is the input operated via pull-up/down?
3.How does the current draw change when the pins are set to Secondary Module Port Function and Output Low? Are there any internal leakage currents here?
4.Do you see any other configuration issues?
Thank you,
Marinus