please tell me. NRF 52832 SDK, ble_app_uart, sdk_config.h Why does not it change even if I change the uart's pin? Do I have other places to change?
please tell me. NRF 52832 SDK, ble_app_uart, sdk_config.h Why does not it change even if I change the uart's pin? Do I have other places to change?
Hi,
As seen in the picture below, on the nRF52832-DK pin P0.05 to P0.08 are the default pins used for printing data over UART. If you for some reason need to change this, you can either edit the board file pca10040.h
located in <SDK_InstallFolder>\components\boards
to use other pins for the UART, or select other pins directly in the uart_init()
-function in main.c
I was able to change the pin of the UART. Thank you.