2024-02-22 21:05:16 +08:00
|
|
|
# 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.
|
|
|
|
|
2024-08-01 21:11:05 +08:00
|
|
|
config STEPPER_SHELL
|
|
|
|
bool "Stepper shell"
|
|
|
|
depends on SHELL
|
|
|
|
help
|
|
|
|
Enable stepper shell for testing.
|
|
|
|
|
2024-02-22 21:05:16 +08:00
|
|
|
comment "Stepper Drivers"
|
|
|
|
|
2024-09-26 15:45:58 +08:00
|
|
|
rsource "adi_tmc/Kconfig"
|
2024-09-15 23:37:48 +08:00
|
|
|
rsource "Kconfig.fake"
|
2024-07-12 21:42:25 +08:00
|
|
|
rsource "Kconfig.gpio"
|
|
|
|
|
2024-02-22 21:05:16 +08:00
|
|
|
endif
|