1/*
2 * Copyright (c) 2019 Mohamed ElShahawi
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	resources {
9		compatible = "test-gpio-basic-api";
10		out-gpios = <&gpio0 16 0>;
11		in-gpios = <&gpio0 17 0>;
12	};
13};
14
15/*
16 * Some notes about esp32 pins:
17 *    GPIO pins 34-39 are not suitable for this test because:
18 *    1. input-only
19 *    2. No internal pull-up/pull-down circuitry.
20 *    The pin names are: SENSOR_VP(GPIO36),SENSOR_CAPP(GPIO37),
21 *                       SENSOR_CAPN (GPIO38), SENSOR_VN (GPIO39),
22 *                       VDET_1 (GPIO34), VDET_2 (GPIO35).
23 */
24