tests: gpio_basic_api: add more board support

Add overlays necessary for area maintainer to verify driver
functionality.

Signed-off-by: Peter Bigot <peter.bigot@nordicsemi.no>
This commit is contained in:
Peter Bigot 2019-10-29 12:42:57 -05:00 committed by Carles Cufí
commit 53aba53aed
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,13 @@
/*
* Copyright (c) 2019 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
/ {
resources {
compatible = "test,gpio_basic_api";
out-gpios = <&gpio1 23 0>; /* Arduino D0 */
in-gpios = <&gpio1 22 0>; /* Arduino D1 */
};
};

View file

@ -0,0 +1,13 @@
/*
* Copyright (c) 2019 Linaro Limited
*
* SPDX-License-Identifier: Apache-2.0
*/
/ {
resources {
compatible = "test,gpio_basic_api";
out-gpios = <&arduino_header 0 0>; /* Arduino A0 */
in-gpios = <&arduino_header 1 0>; /* Arduino A1 */
};
};