tests: gpio_basic_api: add overlay for hifive1_revb testing

Use the Arduino A4 and A5 pins which have no dedicated purpose.

Signed-off-by: Peter Bigot <peter.bigot@nordicsemi.no>
This commit is contained in:
Peter Bigot 2019-12-13 07:41:38 -06:00 committed by Carles Cufí
commit 2bc2f10c00

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 = <&gpio0 12 0>; /* Arduino A4 */
in-gpios = <&gpio0 13 0>; /* Arduino A5 */
};
};