Hello,
I have three devices that use UART, connected to an nRF52832 that I'm using NCS 1.6.0 to program. Since the nRF52832 only has one UART module and Zephyr has no native capability to change the pins, I was hoping to get some guidance in how can I combine nrfx to modify the tx and rx pins while using Zephyr to control the UART.
void change_pins(uint8_t tx, uint8_t rx) { NRF_UARTE0->PSEL.TXD = tx; NRF_UARTE0->PSEL.RXD = rx; }
Would this be sufficient to switch the pins or is other configuration required?