1/* 2 * Copyright (c) 2024 Nordic Semiconductor 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7#include <zephyr/dt-bindings/gpio/gpio.h> 8 9/* 10 * P1.10 looped back to P1.11 11 */ 12 13/ { 14 aliases { 15 test-comp = ∁ 16 }; 17 18 zephyr,user { 19 test-gpios = <&gpio1 10 GPIO_ACTIVE_HIGH>; 20 }; 21}; 22 23&gpio1 { 24 status = "okay"; 25}; 26