1# ESP32 General Purpose Timer configuration
2
3# Copyright (c) 2020 Espressif Systems (Shanghai) Co., Ltd.
4# SPDX-License-Identifier: Apache-2.0
5
6config COUNTER_TMR_ESP32
7	bool "ESP32 Counter Driver based on GP-Timers"
8	default y
9	depends on DT_HAS_ESPRESSIF_ESP32_TIMER_ENABLED
10	help
11	  Enables the Counter driver API based on Espressif's General
12	  Purpose Timers for ESP32 series devices.
13
14config COUNTER_TMR_RTC_ESP32
15	bool "ESP32 Counter Driver based on GP-Timers"
16	default y
17	depends on DT_HAS_ESPRESSIF_ESP32_RTC_TIMER_ENABLED
18	help
19	  Enables the Counter driver API based on Espressif's General
20	  Purpose Timers for ESP32 series devices.
21