1# ESP32 PWM LED configuration options 2 3# Copyright (c) 2017 Vitor Massaru Iha <vitor@massaru.org> 4# Copyright (c) 2022 Espressif Systems (Shanghai) Co., Ltd. 5# SPDX-License-Identifier: Apache-2.0 6 7config PWM_LED_ESP32 8 bool "ESP32 PWM LED driver" 9 default y 10 depends on DT_HAS_ESPRESSIF_ESP32_LEDC_ENABLED 11 help 12 This option enables the PWM LED driver for ESP32 family of 13 processors. 14 15config MCPWM_ESP32 16 bool "ESP32 MCPWM driver" 17 default y 18 depends on DT_HAS_ESPRESSIF_ESP32_MCPWM_ENABLED 19 help 20 This option enables the MCPWM driver for ESP32 family of 21 processors. 22