zephyr/tests/drivers/stepper/stepper_api/boards/native_sim.overlay
Jilay Pandya f780df495d tests: stepper_api: create a scaffold to generalize tests
This commit creates a scaffold for executing stepper_api tests
on the existing step_dir drivers.

Signed-off-by: Jilay Pandya <jilay.pandya@outlook.com>
2025-03-13 07:31:06 +01:00

37 lines
607 B
Plaintext

/*
* Copyright (c) 2025 Jilay Sandeep Pandya
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/dt-bindings/gpio/gpio.h>
/ {
gpio1: gpio1 {
compatible = "zephyr,gpio-emul";
#gpio-cells = <0x2>;
status = "okay";
gpio-controller;
};
gpio2: gpio2 {
compatible = "zephyr,gpio-emul";
#gpio-cells = <0x2>;
status = "okay";
gpio-controller;
};
gpio3: gpio3 {
compatible = "zephyr,gpio-emul";
#gpio-cells = <0x2>;
status = "okay";
gpio-controller;
};
gpio4: gpio4 {
compatible = "zephyr,gpio-emul";
#gpio-cells = <0x2>;
status = "okay";
gpio-controller;
};
};