12 lines
326 B
Text
12 lines
326 B
Text
|
# 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.
|