zephyr/samples/bluetooth/hci_uart/nrf52840_pca10090.overlay
Carles Cufi 3b3bbc1ee0 Bluetooth: hci_uart: Use DT for the hci_uart UART
Use Device Tree,and in particular a new 'bt-c2h-uart' to select which
UART is being used to communicate with an external BLE Host when acting
as a Controller.

Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
2019-06-26 12:37:04 +02:00

18 lines
252 B
Plaintext

/* SPDX-License-Identifier: Apache-2.0 */
/ {
chosen {
zephyr,bt-c2h-uart=&uart1;
};
};
&uart1 {
compatible = "nordic,nrf-uarte";
current-speed = <1000000>;
status = "okay";
tx-pin = <17>;
rx-pin = <20>;
rts-pin = <15>;
cts-pin = <22>;
};