24 lines
471 B
Plaintext
24 lines
471 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.
|
||
|
|
||
|
comment "Stepper Drivers"
|
||
|
|
||
|
endif
|