2016-09-23 01:21:37 +00:00
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
# ifndef _DRIVER_LEDC_H_
# define _DRIVER_LEDC_H_
# include "esp_err.h"
# include "soc/soc.h"
# include "driver/gpio.h"
2016-09-28 15:20:34 +00:00
# include "driver/periph_ctrl.h"
2016-12-07 13:30:21 +00:00
# include "esp_intr_alloc.h"
2016-09-23 01:21:37 +00:00
# ifdef __cplusplus
extern " C " {
# endif
# define LEDC_APB_CLK_HZ (APB_CLK_FREQ)
# define LEDC_REF_CLK_HZ (1*1000000)
2017-05-12 02:43:37 +00:00
# define LEDC_ERR_DUTY (0xFFFFFFFF)
2016-09-23 01:21:37 +00:00
typedef enum {
2016-11-01 03:48:32 +00:00
LEDC_HIGH_SPEED_MODE = 0 , /*!< LEDC high speed speed_mode */
2017-10-23 03:32:47 +00:00
LEDC_LOW_SPEED_MODE , /*!< LEDC low speed speed_mode */
2016-11-01 03:48:32 +00:00
LEDC_SPEED_MODE_MAX , /*!< LEDC speed limit */
2016-09-23 01:21:37 +00:00
} ledc_mode_t ;
2016-09-28 04:04:15 +00:00
2016-09-23 01:21:37 +00:00
typedef enum {
2016-11-01 03:48:32 +00:00
LEDC_INTR_DISABLE = 0 , /*!< Disable LEDC interrupt */
LEDC_INTR_FADE_END , /*!< Enable LEDC interrupt */
2016-09-23 01:21:37 +00:00
} ledc_intr_type_t ;
2016-09-28 04:04:15 +00:00
2016-09-23 01:21:37 +00:00
typedef enum {
2016-11-01 03:48:32 +00:00
LEDC_DUTY_DIR_DECREASE = 0 , /*!< LEDC duty decrease direction */
LEDC_DUTY_DIR_INCREASE = 1 , /*!< LEDC duty increase direction */
2016-09-23 01:21:37 +00:00
} ledc_duty_direction_t ;
2016-09-28 04:04:15 +00:00
2016-09-23 01:21:37 +00:00
typedef enum {
2017-10-23 03:32:47 +00:00
LEDC_REF_TICK = 0 , /*!< LEDC timer clock divided from reference tick (1Mhz) */
LEDC_APB_CLK , /*!< LEDC timer clock divided from APB clock (80Mhz) */
2016-09-26 01:56:03 +00:00
} ledc_clk_src_t ;
2016-09-28 04:04:15 +00:00
2016-09-23 01:21:37 +00:00
typedef enum {
2017-10-23 03:32:47 +00:00
LEDC_TIMER_0 = 0 , /*!< LEDC timer 0 */
LEDC_TIMER_1 , /*!< LEDC timer 1 */
LEDC_TIMER_2 , /*!< LEDC timer 2 */
LEDC_TIMER_3 , /*!< LEDC timer 3 */
2016-09-26 01:56:03 +00:00
} ledc_timer_t ;
2016-09-28 04:04:15 +00:00
2016-09-23 01:21:37 +00:00
typedef enum {
2016-11-01 03:48:32 +00:00
LEDC_CHANNEL_0 = 0 , /*!< LEDC channel 0 */
LEDC_CHANNEL_1 , /*!< LEDC channel 1 */
LEDC_CHANNEL_2 , /*!< LEDC channel 2 */
LEDC_CHANNEL_3 , /*!< LEDC channel 3 */
LEDC_CHANNEL_4 , /*!< LEDC channel 4 */
LEDC_CHANNEL_5 , /*!< LEDC channel 5 */
LEDC_CHANNEL_6 , /*!< LEDC channel 6 */
LEDC_CHANNEL_7 , /*!< LEDC channel 7 */
2016-12-25 15:11:24 +00:00
LEDC_CHANNEL_MAX ,
2016-09-23 01:21:37 +00:00
} ledc_channel_t ;
2016-09-28 04:04:15 +00:00
2016-09-23 01:21:37 +00:00
typedef enum {
2017-10-23 03:32:47 +00:00
LEDC_TIMER_10_BIT = 10 , /*!< LEDC PWM duty resolution of 10 bits */
LEDC_TIMER_11_BIT = 11 , /*!< LEDC PWM duty resolution of 11 bits */
LEDC_TIMER_12_BIT = 12 , /*!< LEDC PWM duty resolution of 12 bits */
LEDC_TIMER_13_BIT = 13 , /*!< LEDC PWM duty resolution of 13 bits */
LEDC_TIMER_14_BIT = 14 , /*!< LEDC PWM duty resolution of 14 bits */
LEDC_TIMER_15_BIT = 15 , /*!< LEDC PWM duty resolution of 15 bits */
2016-09-26 01:56:03 +00:00
} ledc_timer_bit_t ;
2016-09-23 01:21:37 +00:00
2016-12-25 15:11:24 +00:00
typedef enum {
LEDC_FADE_NO_WAIT = 0 , /*!< LEDC fade function will return immediately */
2017-10-23 03:32:47 +00:00
LEDC_FADE_WAIT_DONE , /*!< LEDC fade function will block until fading to the target duty */
2016-12-25 15:11:24 +00:00
LEDC_FADE_MAX ,
} ledc_fade_mode_t ;
2017-10-23 03:32:47 +00:00
2016-11-15 17:35:09 +00:00
/**
* @ brief Configuration parameters of LEDC channel for ledc_channel_config function
*/
2016-09-28 15:20:34 +00:00
typedef struct {
2017-10-23 03:32:47 +00:00
int gpio_num ; /*!< the LEDC output gpio_num, if you want to use gpio16, gpio_num = 16 */
ledc_mode_t speed_mode ; /*!< LEDC speed speed_mode, high-speed mode or low-speed mode */
ledc_channel_t channel ; /*!< LEDC channel (0 - 7) */
ledc_intr_type_t intr_type ; /*!< configure interrupt, Fade interrupt enable or Fade interrupt disable */
ledc_timer_t timer_sel ; /*!< Select the timer source of channel (0 - 3) */
uint32_t duty ; /*!< LEDC channel duty, the range of duty setting is [0, (2**duty_resolution) - 1] */
2016-09-28 15:20:34 +00:00
} ledc_channel_config_t ;
2016-11-15 17:35:09 +00:00
/**
* @ brief Configuration parameters of LEDC Timer timer for ledc_timer_config function
*/
2016-09-28 15:20:34 +00:00
typedef struct {
2017-12-04 19:22:24 +00:00
ledc_mode_t speed_mode ; /*!< LEDC speed speed_mode, high-speed mode or low-speed mode */
union {
ledc_timer_bit_t duty_resolution ; /*!< LEDC channel duty resolution */
ledc_timer_bit_t bit_num __attribute__ ( ( deprecated ) ) ; /*!< Deprecated in ESP-IDF 3.0. This is an alias to 'duty_resolution' for backward compatibility with ESP-IDF 2.1 */
} ;
ledc_timer_t timer_num ; /*!< The timer source of channel (0 - 3) */
uint32_t freq_hz ; /*!< LEDC timer frequency (Hz) */
2016-09-28 15:20:34 +00:00
} ledc_timer_config_t ;
2016-12-07 13:30:21 +00:00
typedef intr_handle_t ledc_isr_handle_t ;
2016-09-28 15:20:34 +00:00
/**
2016-12-25 15:11:24 +00:00
* @ brief LEDC channel configuration
2017-10-23 03:32:47 +00:00
* Configure LEDC channel with the given channel / output gpio_num / interrupt / source timer / frequency ( Hz ) / LEDC duty resolution
2016-09-28 15:20:34 +00:00
*
2016-12-25 15:11:24 +00:00
* @ param ledc_conf Pointer of LEDC channel configure struct
2016-09-28 15:20:34 +00:00
*
2016-11-01 03:48:32 +00:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2016-09-28 15:20:34 +00:00
*/
2017-04-13 17:33:33 +00:00
esp_err_t ledc_channel_config ( const ledc_channel_config_t * ledc_conf ) ;
2016-09-23 01:21:37 +00:00
/**
2016-12-25 15:11:24 +00:00
* @ brief LEDC timer configuration
2017-10-23 03:32:47 +00:00
* Configure LEDC timer with the given source timer / frequency ( Hz ) / duty_resolution
2016-09-28 15:20:34 +00:00
*
2016-11-01 03:48:32 +00:00
* @ param timer_conf Pointer of LEDC timer configure struct
*
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2017-10-23 03:32:47 +00:00
* - ESP_FAIL Can not find a proper pre - divider number base on the given frequency and the current duty_resolution .
2016-09-23 01:21:37 +00:00
*/
2017-04-13 17:33:33 +00:00
esp_err_t ledc_timer_config ( const ledc_timer_config_t * timer_conf ) ;
2016-09-23 01:21:37 +00:00
/**
2016-12-25 15:11:24 +00:00
* @ brief LEDC update channel parameters
* Call this function to activate the LEDC updated parameters .
* After ledc_set_duty , ledc_set_fade , we need to call this function to update the settings .
2016-09-23 01:21:37 +00:00
*
2016-12-25 15:11:24 +00:00
* @ param speed_mode Select the LEDC speed_mode , high - speed mode and low - speed mode ,
2017-10-23 03:32:47 +00:00
* @ param channel LEDC channel ( 0 - 7 ) , select from ledc_channel_t
2016-09-23 01:21:37 +00:00
*
2016-11-01 03:48:32 +00:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2016-09-23 01:21:37 +00:00
*
*/
2016-09-28 15:20:34 +00:00
esp_err_t ledc_update_duty ( ledc_mode_t speed_mode , ledc_channel_t channel ) ;
2016-09-23 01:21:37 +00:00
/**
2016-12-25 15:11:24 +00:00
* @ brief LEDC stop .
* Disable LEDC output , and set idle level
2016-09-23 01:21:37 +00:00
*
2017-02-08 11:52:18 +00:00
* @ param speed_mode Select the LEDC speed_mode , high - speed mode and low - speed mode
2017-10-23 03:32:47 +00:00
* @ param channel LEDC channel ( 0 - 7 ) , select from ledc_channel_t
2016-11-15 17:31:02 +00:00
* @ param idle_level Set output idle level after LEDC stops .
*
2016-11-01 03:48:32 +00:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2016-09-23 01:21:37 +00:00
*/
esp_err_t ledc_stop ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t idle_level ) ;
/**
2017-10-23 03:32:47 +00:00
* @ brief LEDC set channel frequency ( Hz )
2016-09-23 01:21:37 +00:00
*
2017-02-08 11:52:18 +00:00
* @ param speed_mode Select the LEDC speed_mode , high - speed mode and low - speed mode
2017-10-23 03:32:47 +00:00
* @ param timer_num LEDC timer index ( 0 - 3 ) , select from ledc_timer_t
2016-11-01 03:48:32 +00:00
* @ param freq_hz Set the LEDC frequency
2016-09-23 01:21:37 +00:00
*
2016-11-01 03:48:32 +00:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2017-10-23 03:32:47 +00:00
* - ESP_FAIL Can not find a proper pre - divider number base on the given frequency and the current duty_resolution .
2016-09-23 01:21:37 +00:00
*/
2016-09-26 01:56:03 +00:00
esp_err_t ledc_set_freq ( ledc_mode_t speed_mode , ledc_timer_t timer_num , uint32_t freq_hz ) ;
2016-09-23 01:21:37 +00:00
/**
2017-10-23 03:32:47 +00:00
* @ brief LEDC get channel frequency ( Hz )
2016-09-23 01:21:37 +00:00
*
2017-02-08 11:52:18 +00:00
* @ param speed_mode Select the LEDC speed_mode , high - speed mode and low - speed mode
2017-10-23 03:32:47 +00:00
* @ param timer_num LEDC timer index ( 0 - 3 ) , select from ledc_timer_t
2016-09-23 01:21:37 +00:00
*
2016-11-01 03:48:32 +00:00
* @ return
* - 0 error
* - Others Current LEDC frequency
2016-09-23 01:21:37 +00:00
*/
2016-09-26 01:56:03 +00:00
uint32_t ledc_get_freq ( ledc_mode_t speed_mode , ledc_timer_t timer_num ) ;
2016-09-23 01:21:37 +00:00
/**
2016-12-25 15:11:24 +00:00
* @ brief LEDC set duty
* Only after calling ledc_update_duty will the duty update .
2016-09-23 01:21:37 +00:00
*
2017-02-08 11:52:18 +00:00
* @ param speed_mode Select the LEDC speed_mode , high - speed mode and low - speed mode
2017-10-23 03:32:47 +00:00
* @ param channel LEDC channel ( 0 - 7 ) , select from ledc_channel_t
* @ param duty Set the LEDC duty , the range of duty setting is [ 0 , ( 2 * * duty_resolution ) - 1 ]
2016-09-23 01:21:37 +00:00
*
2016-11-01 03:48:32 +00:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2016-09-23 01:21:37 +00:00
*/
esp_err_t ledc_set_duty ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t duty ) ;
/**
2016-12-25 15:11:24 +00:00
* @ brief LEDC get duty
2016-09-23 01:21:37 +00:00
*
2017-02-08 11:52:18 +00:00
* @ param speed_mode Select the LEDC speed_mode , high - speed mode and low - speed mode
2017-10-23 03:32:47 +00:00
* @ param channel LEDC channel ( 0 - 7 ) , select from ledc_channel_t
2016-09-23 01:21:37 +00:00
*
2016-11-01 03:48:32 +00:00
* @ return
2017-05-12 02:43:37 +00:00
* - LEDC_ERR_DUTY if parameter error
2016-11-01 03:48:32 +00:00
* - Others Current LEDC duty
2016-09-23 01:21:37 +00:00
*/
2017-05-12 02:43:37 +00:00
uint32_t ledc_get_duty ( ledc_mode_t speed_mode , ledc_channel_t channel ) ;
2016-09-23 01:21:37 +00:00
/**
2016-12-25 15:11:24 +00:00
* @ brief LEDC set gradient
* Set LEDC gradient , After the function calls the ledc_update_duty function , the function can take effect .
2016-09-23 01:21:37 +00:00
*
2017-02-08 11:52:18 +00:00
* @ param speed_mode Select the LEDC speed_mode , high - speed mode and low - speed mode
2017-10-23 03:32:47 +00:00
* @ param channel LEDC channel ( 0 - 7 ) , select from ledc_channel_t
* @ param duty Set the start of the gradient duty , the range of duty setting is [ 0 , ( 2 * * duty_resolution ) - 1 ]
2016-11-01 03:48:32 +00:00
* @ param gradule_direction Set the direction of the gradient
* @ param step_num Set the number of the gradient
* @ param duty_cyle_num Set how many LEDC tick each time the gradient lasts
* @ param duty_scale Set gradient change amplitude
2016-09-23 01:21:37 +00:00
*
2016-11-01 03:48:32 +00:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2016-09-23 01:21:37 +00:00
*/
2016-12-22 02:30:24 +00:00
esp_err_t ledc_set_fade ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t duty , ledc_duty_direction_t gradule_direction ,
2016-09-23 01:21:37 +00:00
uint32_t step_num , uint32_t duty_cyle_num , uint32_t duty_scale ) ;
/**
2016-12-25 15:11:24 +00:00
* @ brief Register LEDC interrupt handler , the handler is an ISR .
* The handler will be attached to the same CPU core that this function is running on .
2016-11-25 09:33:51 +00:00
*
2016-12-25 15:11:24 +00:00
* @ param fn Interrupt handler function .
* @ param arg User - supplied argument passed to the handler function .
* @ param intr_alloc_flags Flags used to allocate the interrupt . One or multiple ( ORred )
* ESP_INTR_FLAG_ * values . See esp_intr_alloc . h for more info .
* @ param arg Parameter for handler function
* @ param handle Pointer to return handle . If non - NULL , a handle for the interrupt will
* be returned here .
2016-11-01 03:48:32 +00:00
*
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Function pointer error .
2016-09-23 01:21:37 +00:00
*/
2016-12-07 13:30:21 +00:00
esp_err_t ledc_isr_register ( void ( * fn ) ( void * ) , void * arg , int intr_alloc_flags , ledc_isr_handle_t * handle ) ;
2016-09-23 01:21:37 +00:00
2016-09-26 01:56:03 +00:00
/**
2016-12-25 15:11:24 +00:00
* @ brief Configure LEDC settings
2016-09-26 01:56:03 +00:00
*
2017-02-08 11:52:18 +00:00
* @ param speed_mode Select the LEDC speed_mode , high - speed mode and low - speed mode
2017-10-23 03:32:47 +00:00
* @ param timer_sel Timer index ( 0 - 3 ) , there are 4 timers in LEDC module
* @ param clock_divider Timer clock divide value , the timer clock is divided from the selected clock source
* @ param duty_resolution Resolution of duty setting in number of bits . The range of duty values is [ 0 , ( 2 * * duty_resolution ) - 1 ]
2016-12-25 15:11:24 +00:00
* @ param clk_src Select LEDC source clock .
2016-09-26 01:56:03 +00:00
*
2016-11-01 03:48:32 +00:00
* @ return
* - ( - 1 ) Parameter error
* - Other Current LEDC duty
2016-09-26 01:56:03 +00:00
*/
2017-10-23 03:32:47 +00:00
esp_err_t ledc_timer_set ( ledc_mode_t speed_mode , ledc_timer_t timer_sel , uint32_t clock_divider , uint32_t duty_resolution , ledc_clk_src_t clk_src ) ;
2016-09-26 01:56:03 +00:00
/**
2016-12-25 15:11:24 +00:00
* @ brief Reset LEDC timer
2016-09-26 01:56:03 +00:00
*
2017-02-08 11:52:18 +00:00
* @ param speed_mode Select the LEDC speed_mode , high - speed mode and low - speed mode
2017-10-23 03:32:47 +00:00
* @ param timer_sel LEDC timer index ( 0 - 3 ) , select from ledc_timer_t
2016-09-26 01:56:03 +00:00
*
2016-11-01 03:48:32 +00:00
* @ return
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_OK Success
2016-09-26 01:56:03 +00:00
*/
esp_err_t ledc_timer_rst ( ledc_mode_t speed_mode , uint32_t timer_sel ) ;
2016-09-23 01:21:37 +00:00
2016-09-26 01:56:03 +00:00
/**
2016-12-25 15:11:24 +00:00
* @ brief Pause LEDC timer counter
2016-09-26 01:56:03 +00:00
*
2017-02-08 11:52:18 +00:00
* @ param speed_mode Select the LEDC speed_mode , high - speed mode and low - speed mode
2017-10-23 03:32:47 +00:00
* @ param timer_sel LEDC timer index ( 0 - 3 ) , select from ledc_timer_t
2016-09-26 01:56:03 +00:00
*
2016-11-01 03:48:32 +00:00
* @ return
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_OK Success
2016-09-26 01:56:03 +00:00
*
*/
esp_err_t ledc_timer_pause ( ledc_mode_t speed_mode , uint32_t timer_sel ) ;
2016-09-23 01:21:37 +00:00
2016-09-26 01:56:03 +00:00
/**
2016-12-25 15:11:24 +00:00
* @ brief Resume LEDC timer
2016-09-26 01:56:03 +00:00
*
2017-02-08 11:52:18 +00:00
* @ param speed_mode Select the LEDC speed_mode , high - speed mode and low - speed mode
2017-10-23 03:32:47 +00:00
* @ param timer_sel LEDC timer index ( 0 - 3 ) , select from ledc_timer_t
2016-09-26 01:56:03 +00:00
*
2016-11-01 03:48:32 +00:00
* @ return
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_OK Success
2016-09-26 01:56:03 +00:00
*/
esp_err_t ledc_timer_resume ( ledc_mode_t speed_mode , uint32_t timer_sel ) ;
2016-09-23 01:21:37 +00:00
2016-09-26 01:56:03 +00:00
/**
2016-12-25 15:11:24 +00:00
* @ brief Bind LEDC channel with the selected timer
2016-09-26 01:56:03 +00:00
*
2017-02-08 11:52:18 +00:00
* @ param speed_mode Select the LEDC speed_mode , high - speed mode and low - speed mode
2017-10-23 03:32:47 +00:00
* @ param channel LEDC channel index ( 0 - 7 ) , select from ledc_channel_t
* @ param timer_idx LEDC timer index ( 0 - 3 ) , select from ledc_timer_t
2016-09-26 01:56:03 +00:00
*
2016-12-25 15:11:24 +00:00
* @ return
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_OK Success
*/
esp_err_t ledc_bind_channel_timer ( ledc_mode_t speed_mode , uint32_t channel , uint32_t timer_idx ) ;
/**
* @ brief Set LEDC fade function . Should call ledc_fade_func_install ( ) before calling this function .
* Call ledc_fade_start ( ) after this to start fading .
2016-09-26 01:56:03 +00:00
*
2016-12-25 15:11:24 +00:00
* @ param speed_mode Select the LEDC speed_mode , high - speed mode and low - speed mode ,
2017-10-23 03:32:47 +00:00
* @ param channel LEDC channel index ( 0 - 7 ) , select from ledc_channel_t
* @ param target_duty Target duty of fading [ 0 , ( 2 * * duty_resolution ) - 1 ]
2016-12-25 15:11:24 +00:00
* @ param scale Controls the increase or decrease step scale .
* @ param cycle_num increase or decrease the duty every cycle_num cycles
2016-09-26 01:56:03 +00:00
*
2016-11-01 03:48:32 +00:00
* @ return
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_OK Success
2016-12-25 15:11:24 +00:00
* - ESP_ERR_INVALID_STATE Fade function not installed .
2017-02-08 11:52:18 +00:00
* - ESP_FAIL Fade function init error
2016-09-26 01:56:03 +00:00
*/
2017-05-12 02:43:37 +00:00
esp_err_t ledc_set_fade_with_step ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t target_duty , int scale , int cycle_num ) ;
2016-12-25 15:11:24 +00:00
/**
* @ brief Set LEDC fade function , with a limited time . Should call ledc_fade_func_install ( ) before calling this function .
* Call ledc_fade_start ( ) after this to start fading .
*
* @ param speed_mode Select the LEDC speed_mode , high - speed mode and low - speed mode ,
2017-10-23 03:32:47 +00:00
* @ param channel LEDC channel index ( 0 - 7 ) , select from ledc_channel_t
* @ param target_duty Target duty of fading . ( 0 - ( 2 * * duty_resolution - 1 ) ) )
2016-12-25 15:11:24 +00:00
* @ param max_fade_time_ms The maximum time of the fading ( ms ) .
*
* @ return
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_OK Success
* - ESP_ERR_INVALID_STATE Fade function not installed .
2017-02-08 11:52:18 +00:00
* - ESP_FAIL Fade function init error
2016-09-23 01:21:37 +00:00
*/
2017-05-12 02:43:37 +00:00
esp_err_t ledc_set_fade_with_time ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t target_duty , int max_fade_time_ms ) ;
2016-09-23 01:21:37 +00:00
2016-12-25 15:11:24 +00:00
/**
* @ brief Install ledc fade function . This function will occupy interrupt of LEDC module .
*
* @ param intr_alloc_flags Flags used to allocate the interrupt . One or multiple ( ORred )
* ESP_INTR_FLAG_ * values . See esp_intr_alloc . h for more info .
*
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_STATE Fade function already installed .
*/
esp_err_t ledc_fade_func_install ( int intr_alloc_flags ) ;
2016-09-23 01:21:37 +00:00
2016-12-25 15:11:24 +00:00
/**
* @ brief Uninstall LEDC fade function .
*
*/
void ledc_fade_func_uninstall ( ) ;
2016-09-23 01:21:37 +00:00
2016-12-25 15:11:24 +00:00
/**
* @ brief Start LEDC fading .
*
2017-02-08 11:52:18 +00:00
* @ param speed_mode Select the LEDC speed_mode , high - speed mode and low - speed mode
2016-12-25 15:11:24 +00:00
* @ param channel LEDC channel number
* @ param wait_done Whether to block until fading done .
*
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_STATE Fade function not installed .
* - ESP_ERR_INVALID_ARG Parameter error .
*/
2017-02-08 11:52:18 +00:00
esp_err_t ledc_fade_start ( ledc_mode_t speed_mode , ledc_channel_t channel , ledc_fade_mode_t wait_done ) ;
2016-09-23 01:21:37 +00:00
# ifdef __cplusplus
}
# endif
# endif /* _DRIVER_LEDC_H_ */