mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
534346f4bb
LEDC examples, unit test, and programming guide are all updated.
22 lines
412 B
C
22 lines
412 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_APB_CLOCK (1)
|
|
#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
|