Hello,
I'm using SDK v16.0. I'm trying to change the default UART pins from 6,8 to 45,46. In the pca10056.h I have made following changes.
//#define RX_PIN_NUMBER 8 //#define TX_PIN_NUMBER 6 // Changed in hardware v1.6 #define RX_PIN_NUMBER 45 #define TX_PIN_NUMBER 46
But I still see log on pin 6 and 8.
I also tried to change pins in sdk_config.h like following, but no success:
// <o> HCI_UART_RX_PIN - UART RX pin #ifndef HCI_UART_RX_PIN //#define HCI_UART_RX_PIN 8 #define HCI_UART_RX_PIN 45 #endif // <o> HCI_UART_TX_PIN - UART TX pin #ifndef HCI_UART_TX_PIN //#define HCI_UART_TX_PIN 6 #define HCI_UART_TX_PIN 46 #endif
Tried this: https://devzone.nordicsemi.com/f/nordic-q-a/53691/re-changing-the-uart-tx-rx-pins
But it throws error: Cannot find definition of app_uart_comm_params_t
Thanks