zephyr/drivers/stepper/Kconfig
Fabian Blatz 0b124a2ff6 drivers: stepper: Add timing source for step dir stepper
Adds a timing source api which is used by the step-dir stepper common code.
This allows the reusable common code to configure different timing sources,
since the initial delayable work implementation was inacurate for higher
maximum velocities.

Signed-off-by: Fabian Blatz <fabianblatz@gmail.com>
2024-12-28 04:37:05 +01:00

40 lines
784 B
Text

# 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.gpio"
rsource "adi_tmc/Kconfig"
rsource "ti/Kconfig"
# zephyr-keep-sorted-stop
endif