zephyr/tests/drivers/gpio/gpio_basic_api/boards/quick_feather.overlay
Jan Kowalewski 5db06d6380 tests: drivers: gpio: provide quickfeather overlay
This commit provides the necessary overlay to make the test pass
on the QuickFeather hardware.

Signed-off-by: Jan Kowalewski <jkowalewski@antmicro.com>
2021-03-11 08:58:20 -05:00

14 lines
266 B
Plaintext

/*
* Copyright (c) 2021, Antmicro <www.antmicro.com>
*
* SPDX-License-Identifier: Apache-2.0
*/
/ {
resources {
compatible = "test,gpio_basic_api";
out-gpios = <&gpio 2 0>; /* Header J8 - pin 6 */
in-gpios = <&gpio 0 0>; /* Header J8 - pin 10 */
};
};