mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-19 03:15:21 +00:00
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>
18 lines
252 B
Plaintext
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>;
|
|
};
|