1/* This is the default app device tree overlay. This file is ignored if 2 * there is a board-specific overlay in `./boards`. 3 * 4 * Most boards define a convenient `&uart0`. It's used here to make the 5 * sample 'just work' automatically for those boards. 6 */ 7 8bt_c2h_uart: &uart0 { 9 status = "okay"; 10 current-speed = <1000000>; 11 hw-flow-control; 12}; 13 14/ { 15 chosen { 16 zephyr,bt-c2h-uart = &bt_c2h_uart; 17 }; 18}; 19 20/* Some boards are by default assigning the &uart0 to these other 21 * functions. Removing the assignments will ensure a compilation error 22 * instead of accidental interference. 23 */ 24/ { 25 chosen { 26 /delete-property/ zephyr,console; 27 /delete-property/ zephyr,shell-uart; 28 /delete-property/ zephyr,uart-mcumgr; 29 /delete-property/ zephyr,bt-mon-uart; 30 }; 31}; 32