zephyr/tests/drivers/gpio/gpio_basic_api/boards/mimxrt1060_evk.overlay

17 lines
374 B
Plaintext

/*
* Copyright (c) 2024 NXP
*
* SPDX-License-Identifier: Apache-2.0
*/
/* loopback with arduino header D0 and D1 */
/ {
resources {
compatible = "test-gpio-basic-api";
status = "okay";
out-gpios = <&arduino_header 6 (GPIO_ACTIVE_HIGH | GPIO_PUSH_PULL | GPIO_PULL_UP)>;
in-gpios = <&arduino_header 7 (GPIO_ACTIVE_HIGH | GPIO_PUSH_PULL | GPIO_PULL_UP)>;
};
};