mirror of
https://github.com/espressif/esp-idf.git
synced 2025-09-06 07:49:58 +00:00
21 lines
361 B
C
21 lines
361 B
C
/*
|
|
* SPDX-FileCopyrightText: 2019-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define SOC_LEDC_SUPPORT_XTAL_CLOCK (1)
|
|
#define SOC_LEDC_CHANNEL_NUM 8
|
|
#define SOC_LEDC_TIMER_BIT_WIDE_NUM (14)
|
|
#define SOC_LEDC_SUPPORT_FADE_STOP (1)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|