mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-12 06:41:55 +00:00
This driver configures STM32's internal timers in order to use the quadrature encoder mode. Signed-off-by: Valerio Setti <vsetti@baylibre.com>
12 lines
269 B
Plaintext
12 lines
269 B
Plaintext
# Copyright (c) 2022, Valerio Setti <vsetti@baylibre.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
config QDEC_STM32
|
|
bool "STM32 QDEC driver"
|
|
default y
|
|
depends on DT_HAS_ST_STM32_QDEC_ENABLED
|
|
select USE_STM32_LL_TIM
|
|
help
|
|
STM32 family Quadrature Decoder driver.
|