1/* 2 * Copyright (c) 2021 Teslabs Engineering S.L. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 resources { 9 compatible = "test-gpio-basic-api"; 10 /* Unplug jumpers from P3 and P2 and bridge PD0/PD1 */ 11 out-gpios = <&gpiod 0 0>; /* P3 pin 2 (PD0) */ 12 in-gpios = <&gpiod 1 0>; /* P2 pin 2 (PD1) */ 13 }; 14}; 15 16&gpiod { 17 status = "okay"; 18}; 19