1# ESP32 Pulse Counter configuration
2
3# Copyright (c) 2022 Espressif Systems (Shanghai) Co., Ltd.
4# SPDX-License-Identifier: Apache-2.0
5
6config PCNT_ESP32
7	bool "ESP32 Pulse Counter driver"
8	default y
9	depends on DT_HAS_ESPRESSIF_ESP32_PCNT_ENABLED
10	help
11	  This option enables the PCNT driver for ESP32 family of
12	  processors.
13
14config PCNT_ESP32_TRIGGER
15	bool "Trigger support"
16	depends on PCNT_ESP32
17	default y
18	help
19	  Enable trigger support for the PCNT.
20