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
12&uart1 {
13	status = "okay";
14	compatible = "zephyr,native-pty-uart";
15	/delete-property/ pinctrl-0;
16	/delete-property/ pinctrl-1;
17	/delete-property/ pinctrl-names;
18
19	bt_hci_uart: bt_hci_uart {
20		compatible = "zephyr,bt-hci-uart";
21		status = "disabled";
22	};
23};
24
25&uart0 {
26	status = "okay";
27	compatible = "zephyr,native-pty-uart";
28	/delete-property/ pinctrl-0;
29	/delete-property/ pinctrl-1;
30	/delete-property/ pinctrl-names;
31};
32