zephyr/drivers/stepper/Kconfig
Jilay Pandya 3ce26616c9 drivers: stepper: rename gpio_steppper_controller to h_bridge_stepper
rename gpio stepper to h bridge stepper
minor correction in stepper_stop, stepper_stop shall cancel all active
movements and should not be concerned about keeping the coils energized
or not, since that is a concern of a motion controller and not a stepper
driver.

Signed-off-by: Jilay Pandya <jilay.pandya@outlook.com>
2025-07-19 09:57:40 +02:00

42 lines
814 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.
comment "Stepper Driver Common"
rsource "step_dir/Kconfig"
comment "Stepper Drivers"
# zephyr-keep-sorted-start
rsource "Kconfig.fake"
rsource "Kconfig.h_bridge"
rsource "adi_tmc/Kconfig"
rsource "allegro/Kconfig"
rsource "ti/Kconfig"
# zephyr-keep-sorted-stop
endif