I am using Nordic's NRF_SDK_For_Thread_and_Zigbee_4.1.0.
In that example/thread/ncp, I want to build NCP firmware for uart.
Original uart pins for rx and tx are 8 and 6.
While I want to build that firmware for pins 26 and 6.
UART Rx is 26 and Uart Tx is 4.
So where I should update these pins so that my custom nordic module, that has uart Rx on 26 and Tx on 4, can be interfaced with my custom gateway board, which I use as border router.
Also, should I add some Pullup or Pulldown to Rx pin in the NCP's main code?
nrf_gpio_cfg_input(0x1A, NRF_GPIO_PIN_PULLUP);