1/* 2 * Copyright (c) 2024 Alexandre Bailon 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 chosen { 9 /* Use XDS110 UART for the NCP */ 10 zephyr,ot-uart = &uart0; 11 /* Use UART1 for debugging / zephyr console */ 12 zephyr,shell-uart = &uart1; 13 zephyr,console = &uart1; 14 }; 15}; 16 17&uart1 { 18 status = "okay"; 19}; 20