zephyr/drivers/stepper/Kconfig
Sarah Renkhoff 79d62944b1 drivers: stepper: Add driver for DRV8424 stepper motor controller
Adds a step/dir stepper driver for the drv8424 stepper driver.

Signed-off-by: Sarah Renkhoff <sarah.renkhoff@navimatix.de>
2024-12-19 15:21:44 +01:00

42 lines
819 B
Plaintext

# SPDX-FileCopyrightText: Copyright (c) 2023 Carl Zeiss Meditec AG
# SPDX-License-Identifier: Apache-2.0
menuconfig STEPPER
bool "Stepper Controller"
help
Enable stepper controller
if STEPPER
module = STEPPER
module-str = stepper
source "subsys/logging/Kconfig.template.log_config"
config STEPPER_INIT_PRIORITY
int "Stepper Motor Controller init priority"
default 90
help
Stepper motor controller initialization priority.
config STEPPER_SHELL
bool "Stepper shell"
depends on SHELL
help
Enable stepper shell for testing.
config STEP_DIR_STEPPER
bool
help
Enable library used for step direction stepper drivers.
comment "Stepper Drivers"
# zephyr-keep-sorted-start
rsource "Kconfig.fake"
rsource "Kconfig.gpio"
rsource "adi_tmc/Kconfig"
rsource "ti/Kconfig"
# zephyr-keep-sorted-stop
endif