1/*
2 * Copyright (c) 2020 Friedt Professional Engineering Services, Inc
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	resources {
9		compatible = "test-gpio-basic-api";
10		out-gpios = <&gpio0 0 0>; /* Pin 0 */
11		in-gpios = <&gpio0 1 0>; /* Pin 1 */
12	};
13};
14
15&gpio0 {
16	ngpios = <2>;
17};
18