Dear Support
Try to modify this use UART_1 for sending out data received via BLE, which is pin P0.14 on nrf52833dk_nrf52833, I modified Kconfig file under the boards folder
Dear Support
Try to modify this use UART_1 for sending out data received via BLE, which is pin P0.14 on nrf52833dk_nrf52833, I modified Kconfig file under the boards folder
Hi,
You need to add an overlay file which enables and sets up uart1, and also disables i2c1. Here's an example, that you can modify for your desired pins:
&uart1 {
status = "okay";
tx-pin = < >;
rx-pin = < >;
label = "UART_1";
};
&i2c1 {
status = "disabled";
};
If it still does not work, please tell me the pins you are using and any other information that may be useful.
If you are using SES, remember to run Project->Run CMake after changes to Kconfig, prj.conf, and overlay files.
Hi,
You need to add an overlay file which enables and sets up uart1, and also disables i2c1. Here's an example, that you can modify for your desired pins:
&uart1 {
status = "okay";
tx-pin = < >;
rx-pin = < >;
label = "UART_1";
};
&i2c1 {
status = "disabled";
};
If it still does not work, please tell me the pins you are using and any other information that may be useful.
If you are using SES, remember to run Project->Run CMake after changes to Kconfig, prj.conf, and overlay files.