zephyr/drivers/counter/Kconfig.stm32_timer
Kent Hall ba37d5935e drivers: counter: Counter API implementation for STM32F4 Series (TIMER).
- Shim for counter API using LL_TIM driver.
- Supports all general-purpose (TIMx) timers.

Signed-off-by: Kent Hall <kjh2166@columbia.edu>
2021-12-11 14:20:17 -05:00

12 lines
326 B
Plaintext

# Copyright (c) 2021 Kent Hall
# SPDX-License-Identifier: Apache-2.0
DT_COMPAT_ST_STM32_COUNTER := st,stm32-counter
config COUNTER_TIMER_STM32
bool "STM32 counter driver"
default $(dt_compat_enabled,$(DT_COMPAT_ST_STM32_COUNTER))
select USE_STM32_LL_TIM
help
Enable the counter driver for STM32 family of processors.