1/ {
2	chosen {
3		zephyr,console = &uart0;
4		zephyr,shell-uart = &uart0;
5	};
6};
7
8/* Use the PTY driver instead of the UART peripheral emulation that is now the
9 * default on nrf52_bsim. */
10
11&uart1 {
12	status = "okay";
13	compatible = "zephyr,native-posix-uart";
14	/delete-property/ pinctrl-0;
15	/delete-property/ pinctrl-1;
16	/delete-property/ pinctrl-names;
17
18	bt_hci_uart: bt_hci_uart {
19		compatible = "zephyr,bt-hci-uart";
20		status = "disabled";
21	};
22};
23
24&uart0 {
25	status = "okay";
26	compatible = "zephyr,native-posix-uart";
27	/delete-property/ pinctrl-0;
28	/delete-property/ pinctrl-1;
29	/delete-property/ pinctrl-names;
30};
31