1# Copyright (c) 2024 Fabian Blatz <fabianblatz@gmail.com> 2# SPDX-License-Identifier: Apache-2.0 3 4config STEP_DIR_STEPPER 5 bool 6 help 7 Enable library used for step direction stepper drivers. 8 9if STEP_DIR_STEPPER 10 11config STEP_DIR_STEPPER_COUNTER_TIMING 12 bool "Counter use for stepping" 13 select COUNTER 14 default y 15 help 16 Enable usage of a counter device for accurate stepping. 17 18module = STEP_DIR 19module-str = step_dir 20rsource "../Kconfig.stepper_event_template" 21 22endif # STEP_DIR_STEPPER 23