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.03 looped back to P1.02 11 */ 12 13/ { 14 aliases { 15 test-comp = ∁ 16 }; 17 18 zephyr,user { 19 test-gpios = <&gpio1 3 GPIO_ACTIVE_HIGH>; 20 }; 21}; 22 23&gpio1 { 24 status = "okay"; 25}; 26 27/* Temporary workaround to reserve P1.03 for cpuapp */ 28&led1 { 29 gpios = < &gpio1 0x3 0x0 >; 30}; 31 32/* Temporary workaround to reserve P1.02 for cpuapp */ 33&led2 { 34 gpios = < &gpio1 0x2 0x0 >; 35}; 36