2021-05-24 01:50:04 +02:00
/*
2025-02-07 20:41:17 +08:00
* SPDX - FileCopyrightText : 2015 - 2025 Espressif Systems ( Shanghai ) CO LTD
2021-05-24 01:50:04 +02:00
*
* SPDX - License - Identifier : Apache - 2.0
*/
2016-09-23 09:21:37 +08:00
2019-08-09 20:30:19 +08:00
# pragma once
2016-09-23 09:21:37 +08:00
# include "esp_err.h"
2019-08-09 20:30:19 +08:00
# include "esp_intr_alloc.h"
# include "hal/ledc_types.h"
2016-09-23 09:21:37 +08:00
# include "driver/gpio.h"
# ifdef __cplusplus
extern " C " {
# endif
2022-02-09 12:50:19 +08:00
# if SOC_LEDC_SUPPORT_APB_CLOCK
/**
* @ brief Frequency of one of the LEDC peripheral clock sources , APB_CLK
* @ note This macro should have no use in your application , we keep it here only for backward compatible
*/
# define LEDC_APB_CLK_HZ _Pragma ("GCC warning \"'LEDC_APB_CLK_HZ' macro is deprecated\"") (APB_CLK_FREQ)
# endif
# if SOC_LEDC_SUPPORT_REF_TICK
/**
* @ brief Frequency of one of the LEDC peripheral clock sources , REF_TICK
* @ note This macro should have no use in your application , we keep it here only for backward compatible
*/
# define LEDC_REF_CLK_HZ _Pragma ("GCC warning \"'LEDC_REF_CLK_HZ' macro is deprecated\"") (REF_CLK_FREQ)
# endif
2021-06-02 20:19:09 +08:00
# define LEDC_ERR_DUTY (0xFFFFFFFF)
# define LEDC_ERR_VAL (-1)
2024-10-10 21:10:20 +08:00
/**
* @ brief Strategies to be applied to the LEDC channel during system Light - sleep period
*/
typedef enum {
LEDC_SLEEP_MODE_NO_ALIVE_NO_PD = 0 , /*!< The default mode: no LEDC output, and no power off the LEDC power domain. */
LEDC_SLEEP_MODE_NO_ALIVE_ALLOW_PD , /*!< The low-power-consumption mode: no LEDC output, and allow to power off the LEDC power domain.
This can save power , but at the expense of more RAM being consumed to save register context .
This option is only available on targets that support TOP domain to be powered down . */
LEDC_SLEEP_MODE_KEEP_ALIVE , /*!< The high-power-consumption mode: keep LEDC output when the system enters Light-sleep. */
LEDC_SLEEP_MODE_INVALID , /*!< Invalid LEDC sleep mode strategy */
} ledc_sleep_mode_t ;
2021-06-02 20:19:09 +08:00
/**
* @ brief Configuration parameters of LEDC channel for ledc_channel_config function
*/
typedef struct {
int gpio_num ; /*!< the LEDC output gpio_num, if you want to use gpio16, gpio_num = 16 */
2023-09-20 12:47:21 +08:00
ledc_mode_t speed_mode ; /*!< LEDC speed speed_mode, high-speed mode (only exists on esp32) or low-speed mode */
2023-01-24 01:54:34 +08:00
ledc_channel_t channel ; /*!< LEDC channel (0 - LEDC_CHANNEL_MAX-1) */
2021-06-02 20:19:09 +08:00
ledc_intr_type_t intr_type ; /*!< configure interrupt, Fade interrupt enable or Fade interrupt disable */
2023-01-24 01:54:34 +08:00
ledc_timer_t timer_sel ; /*!< Select the timer source of channel (0 - LEDC_TIMER_MAX-1) */
2021-06-02 20:19:09 +08:00
uint32_t duty ; /*!< LEDC channel duty, the range of duty setting is [0, (2**duty_resolution)] */
2023-09-20 12:47:21 +08:00
int hpoint ; /*!< LEDC channel hpoint value, the range is [0, (2**duty_resolution)-1] */
2024-10-10 21:10:20 +08:00
ledc_sleep_mode_t sleep_mode ; /*!< choose the desired behavior for the LEDC channel in Light-sleep */
2021-06-02 20:19:09 +08:00
struct {
unsigned int output_invert : 1 ; /*!< Enable (1) or disable (0) gpio output invert */
} flags ; /*!< LEDC flags */
} ledc_channel_config_t ;
/**
2023-03-24 19:40:18 +08:00
* @ brief Configuration parameters of LEDC timer for ledc_timer_config function
2021-06-02 20:19:09 +08:00
*/
typedef struct {
2023-09-20 12:47:21 +08:00
ledc_mode_t speed_mode ; /*!< LEDC speed speed_mode, high-speed mode (only exists on esp32) or low-speed mode */
2022-05-14 19:12:13 +08:00
ledc_timer_bit_t duty_resolution ; /*!< LEDC channel duty resolution */
2023-01-24 01:54:34 +08:00
ledc_timer_t timer_num ; /*!< The timer source of channel (0 - LEDC_TIMER_MAX-1) */
2021-06-02 20:19:09 +08:00
uint32_t freq_hz ; /*!< LEDC timer frequency (Hz) */
2022-02-09 12:50:19 +08:00
ledc_clk_cfg_t clk_cfg ; /*!< Configure LEDC source clock from ledc_clk_cfg_t.
2023-01-24 01:54:34 +08:00
Note that LEDC_USE_RC_FAST_CLK and LEDC_USE_XTAL_CLK are
2022-02-09 12:50:19 +08:00
non - timer - specific clock sources . You can not have one LEDC timer uses
2023-01-24 01:54:34 +08:00
RC_FAST_CLK as the clock source and have another LEDC timer uses XTAL_CLK
2022-02-09 12:50:19 +08:00
as its clock source . All chips except esp32 and esp32s2 do not have
timer - specific clock sources , which means clock source for all timers
must be the same one . */
2023-03-24 19:40:18 +08:00
bool deconfigure ; /*!< Set this field to de-configure a LEDC timer which has been configured before
Note that it will not check whether the timer wants to be de - configured
is binded to any channel . Also , the timer has to be paused first before
it can be de - configured .
When this field is set , duty_resolution , freq_hz , clk_cfg fields are ignored . */
2021-06-02 20:19:09 +08:00
} ledc_timer_config_t ;
2016-09-28 23:20:34 +08:00
2016-12-07 21:30:21 +08:00
typedef intr_handle_t ledc_isr_handle_t ;
2016-09-28 23:20:34 +08:00
2021-07-08 17:47:05 +08:00
/**
* @ brief LEDC callback event type
*/
typedef enum {
LEDC_FADE_END_EVT /**< LEDC fade end event */
} ledc_cb_event_t ;
/**
* @ brief LEDC callback parameter
*/
typedef struct {
ledc_cb_event_t event ; /**< Event name */
uint32_t speed_mode ; /**< Speed mode of the LEDC channel group */
uint32_t channel ; /**< LEDC channel (0 - LEDC_CHANNEL_MAX-1) */
2023-09-20 12:47:21 +08:00
uint32_t duty ; /**< LEDC current duty of the channel, the range of duty is [0, (2**duty_resolution)] */
2021-07-08 17:47:05 +08:00
} ledc_cb_param_t ;
/**
* @ brief Type of LEDC event callback
* @ param param LEDC callback parameter
* @ param user_arg User registered data
2022-11-03 10:37:04 +08:00
* @ return Whether a high priority task has been waken up by this function
2021-07-08 17:47:05 +08:00
*/
2022-11-03 10:37:04 +08:00
typedef bool ( * ledc_cb_t ) ( const ledc_cb_param_t * param , void * user_arg ) ;
2021-07-08 17:47:05 +08:00
/**
* @ brief Group of supported LEDC callbacks
* @ note The callbacks are all running under ISR environment
*/
typedef struct {
ledc_cb_t fade_cb ; /**< LEDC fade_end callback function */
} ledc_cbs_t ;
2016-09-28 23:20:34 +08:00
/**
2016-12-25 23:11:24 +08:00
* @ brief LEDC channel configuration
2023-07-07 17:42:57 +03:00
* Configure LEDC channel with the given channel / output gpio_num / interrupt / source timer / frequency ( Hz ) / LEDC duty
2016-09-28 23:20:34 +08:00
*
2016-12-25 23:11:24 +08:00
* @ param ledc_conf Pointer of LEDC channel configure struct
2016-09-28 23:20:34 +08:00
*
2016-11-01 11:48:32 +08:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2016-09-28 23:20:34 +08:00
*/
2022-11-03 10:37:04 +08:00
esp_err_t ledc_channel_config ( const ledc_channel_config_t * ledc_conf ) ;
2016-09-23 09:21:37 +08:00
2023-07-07 17:42:57 +03:00
/**
* @ brief Helper function to find the maximum possible duty resolution in bits for ledc_timer_config ( )
*
* @ param src_clk_freq LEDC timer source clock frequency ( Hz ) ( See doxygen comments of ` ledc_clk_cfg_t ` or get from ` esp_clk_tree_src_get_freq_hz ` )
* @ param timer_freq Desired LEDC timer frequency ( Hz )
*
* @ return
* - 0 The timer frequency cannot be achieved
* - Others The largest duty resolution value to be set
*/
uint32_t ledc_find_suitable_duty_resolution ( uint32_t src_clk_freq , uint32_t timer_freq ) ;
2016-09-23 09:21:37 +08:00
/**
2016-12-25 23:11:24 +08:00
* @ brief LEDC timer configuration
2017-10-23 05:32:47 +02:00
* Configure LEDC timer with the given source timer / frequency ( Hz ) / duty_resolution
2016-09-28 23:20:34 +08:00
*
2016-11-01 11:48:32 +08:00
* @ param timer_conf Pointer of LEDC timer configure struct
*
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2017-10-23 05:32:47 +02:00
* - ESP_FAIL Can not find a proper pre - divider number base on the given frequency and the current duty_resolution .
2023-03-24 19:40:18 +08:00
* - ESP_ERR_INVALID_STATE Timer cannot be de - configured because timer is not configured or is not paused
2016-09-23 09:21:37 +08:00
*/
2022-11-03 10:37:04 +08:00
esp_err_t ledc_timer_config ( const ledc_timer_config_t * timer_conf ) ;
2016-09-23 09:21:37 +08:00
/**
2016-12-25 23:11:24 +08:00
* @ brief LEDC update channel parameters
2023-09-20 12:47:21 +08:00
*
2018-04-12 15:38:39 +08:00
* @ note Call this function to activate the LEDC updated parameters .
* After ledc_set_duty , we need to call this function to update the settings .
2021-07-28 19:46:33 +08:00
* And the new LEDC parameters don ' t take effect until the next PWM cycle .
2018-04-12 15:38:39 +08:00
* @ note ledc_set_duty , ledc_set_duty_with_hpoint and ledc_update_duty are not thread - safe , do not call these functions to
* control one LEDC channel in different tasks at the same time .
* A thread - safe version of API is ledc_set_duty_and_update
2023-06-14 12:25:05 +08:00
* @ note If ` CONFIG_LEDC_CTRL_FUNC_IN_IRAM ` is enabled , this function will be placed in the IRAM by linker ,
* makes it possible to execute even when the Cache is disabled .
* @ note This function is allowed to run within ISR context .
2023-09-20 12:47:21 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2021-07-08 17:47:05 +08:00
* @ param channel LEDC channel ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
2016-09-23 09:21:37 +08:00
*
2016-11-01 11:48:32 +08:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2016-09-23 09:21:37 +08:00
*/
2016-09-28 23:20:34 +08:00
esp_err_t ledc_update_duty ( ledc_mode_t speed_mode , ledc_channel_t channel ) ;
2016-09-23 09:21:37 +08:00
2018-10-31 18:01:00 -04:00
/**
* @ brief Set LEDC output gpio .
2022-01-17 14:45:56 +08:00
*
* @ note This function only routes the LEDC signal to GPIO through matrix , other LEDC resources initialization are not involved .
* Please use ` ledc_channel_config ( ) ` instead to fully configure a LEDC channel .
2018-10-31 18:01:00 -04:00
*
* @ param gpio_num The LEDC output gpio
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2024-07-02 12:27:30 +08:00
* @ param channel LEDC channel ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
2018-10-31 18:01:00 -04:00
*
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
*/
2024-07-02 12:27:30 +08:00
esp_err_t ledc_set_pin ( int gpio_num , ledc_mode_t speed_mode , ledc_channel_t channel ) ;
2022-01-17 14:45:56 +08:00
2016-09-23 09:21:37 +08:00
/**
2016-12-25 23:11:24 +08:00
* @ brief LEDC stop .
* Disable LEDC output , and set idle level
2016-09-23 09:21:37 +08:00
*
2023-06-14 12:25:05 +08:00
* @ note If ` CONFIG_LEDC_CTRL_FUNC_IN_IRAM ` is enabled , this function will be placed in the IRAM by linker ,
* makes it possible to execute even when the Cache is disabled .
* @ note This function is allowed to run within ISR context .
2023-09-20 12:47:21 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2021-07-08 17:47:05 +08:00
* @ param channel LEDC channel ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
2016-11-16 01:31:02 +08:00
* @ param idle_level Set output idle level after LEDC stops .
*
2016-11-01 11:48:32 +08:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2016-09-23 09:21:37 +08:00
*/
esp_err_t ledc_stop ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t idle_level ) ;
/**
2017-10-23 05:32:47 +02:00
* @ brief LEDC set channel frequency ( Hz )
2016-09-23 09:21:37 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2017-10-23 05:32:47 +02:00
* @ param timer_num LEDC timer index ( 0 - 3 ) , select from ledc_timer_t
2016-11-01 11:48:32 +08:00
* @ param freq_hz Set the LEDC frequency
2016-09-23 09:21:37 +08:00
*
2016-11-01 11:48:32 +08:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2017-10-23 05:32:47 +02:00
* - ESP_FAIL Can not find a proper pre - divider number base on the given frequency and the current duty_resolution .
2016-09-23 09:21:37 +08:00
*/
2016-09-26 09:56:03 +08:00
esp_err_t ledc_set_freq ( ledc_mode_t speed_mode , ledc_timer_t timer_num , uint32_t freq_hz ) ;
2016-09-23 09:21:37 +08:00
/**
2017-10-23 05:32:47 +02:00
* @ brief LEDC get channel frequency ( Hz )
2016-09-23 09:21:37 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2017-10-23 05:32:47 +02:00
* @ param timer_num LEDC timer index ( 0 - 3 ) , select from ledc_timer_t
2016-09-23 09:21:37 +08:00
*
2016-11-01 11:48:32 +08:00
* @ return
* - 0 error
* - Others Current LEDC frequency
2016-09-23 09:21:37 +08:00
*/
2016-09-26 09:56:03 +08:00
uint32_t ledc_get_freq ( ledc_mode_t speed_mode , ledc_timer_t timer_num ) ;
2016-09-23 09:21:37 +08:00
/**
2018-04-12 15:38:39 +08:00
* @ brief LEDC set duty and hpoint value
2016-12-25 23:11:24 +08:00
* Only after calling ledc_update_duty will the duty update .
2023-09-20 12:47:21 +08:00
*
2018-04-12 15:38:39 +08:00
* @ note ledc_set_duty , ledc_set_duty_with_hpoint and ledc_update_duty are not thread - safe , do not call these functions to
* control one LEDC channel in different tasks at the same time .
* A thread - safe version of API is ledc_set_duty_and_update
2022-01-10 21:07:58 +08:00
* @ note For ESP32 , hardware does not support any duty change while a fade operation is running in progress on that channel .
2018-04-12 15:38:39 +08:00
* Other duty operations will have to wait until the fade operation has finished .
2023-09-20 12:47:21 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2021-07-08 17:47:05 +08:00
* @ param channel LEDC channel ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
2023-09-20 12:47:21 +08:00
* @ param duty Set the LEDC duty , the range of duty setting is [ 0 , ( 2 * * duty_resolution ) ]
* @ param hpoint Set the LEDC hpoint value , the range is [ 0 , ( 2 * * duty_resolution ) - 1 ]
2018-04-12 15:38:39 +08:00
*
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
*/
esp_err_t ledc_set_duty_with_hpoint ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t duty , uint32_t hpoint ) ;
/**
* @ brief LEDC get hpoint value , the counter value when the output is set high level .
2016-09-23 09:21:37 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2021-07-08 17:47:05 +08:00
* @ param channel LEDC channel ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
2023-09-20 12:47:21 +08:00
*
2018-04-12 15:38:39 +08:00
* @ return
* - LEDC_ERR_VAL if parameter error
* - Others Current hpoint value of LEDC channel
*/
int ledc_get_hpoint ( ledc_mode_t speed_mode , ledc_channel_t channel ) ;
/**
* @ brief LEDC set duty
* This function do not change the hpoint value of this channel . if needed , please call ledc_set_duty_with_hpoint .
* only after calling ledc_update_duty will the duty update .
2023-09-20 12:47:21 +08:00
*
2018-04-12 15:38:39 +08:00
* @ note ledc_set_duty , ledc_set_duty_with_hpoint and ledc_update_duty are not thread - safe , do not call these functions to
* control one LEDC channel in different tasks at the same time .
* A thread - safe version of API is ledc_set_duty_and_update .
2022-01-10 21:07:58 +08:00
* @ note For ESP32 , hardware does not support any duty change while a fade operation is running in progress on that channel .
2018-04-12 15:38:39 +08:00
* Other duty operations will have to wait until the fade operation has finished .
2023-09-20 12:47:21 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2021-07-08 17:47:05 +08:00
* @ param channel LEDC channel ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
2023-09-20 12:47:21 +08:00
* @ param duty Set the LEDC duty , the range of duty setting is [ 0 , ( 2 * * duty_resolution ) ]
2016-09-23 09:21:37 +08:00
*
2016-11-01 11:48:32 +08:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2016-09-23 09:21:37 +08:00
*/
esp_err_t ledc_set_duty ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t duty ) ;
/**
2016-12-25 23:11:24 +08:00
* @ brief LEDC get duty
2021-07-28 19:46:33 +08:00
* This function returns the duty at the present PWM cycle .
* You shouldn ' t expect the function to return the new duty in the same cycle of calling ledc_update_duty ,
* because duty update doesn ' t take effect until the next cycle .
2016-09-23 09:21:37 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2021-07-08 17:47:05 +08:00
* @ param channel LEDC channel ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
2016-09-23 09:21:37 +08:00
*
2016-11-01 11:48:32 +08:00
* @ return
2017-05-12 10:43:37 +08:00
* - LEDC_ERR_DUTY if parameter error
2016-11-01 11:48:32 +08:00
* - Others Current LEDC duty
2016-09-23 09:21:37 +08:00
*/
2017-05-12 10:43:37 +08:00
uint32_t ledc_get_duty ( ledc_mode_t speed_mode , ledc_channel_t channel ) ;
2016-09-23 09:21:37 +08:00
/**
2016-12-25 23:11:24 +08:00
* @ brief LEDC set gradient
* Set LEDC gradient , After the function calls the ledc_update_duty function , the function can take effect .
2023-09-20 12:47:21 +08:00
*
2022-01-10 21:07:58 +08:00
* @ note For ESP32 , hardware does not support any duty change while a fade operation is running in progress on that channel .
2018-04-12 15:38:39 +08:00
* Other duty operations will have to wait until the fade operation has finished .
2023-09-20 12:47:21 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2021-07-08 17:47:05 +08:00
* @ param channel LEDC channel ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
2023-09-20 12:47:21 +08:00
* @ param duty Set the start of the gradient duty , the range of duty setting is [ 0 , ( 2 * * duty_resolution ) ]
2018-04-12 15:38:39 +08:00
* @ param fade_direction Set the direction of the gradient
* @ param step_num Set the number of the gradient
2019-08-09 20:30:19 +08:00
* @ param duty_cycle_num Set how many LEDC tick each time the gradient lasts
2018-04-12 15:38:39 +08:00
* @ param duty_scale Set gradient change amplitude
2016-09-23 09:21:37 +08:00
*
2016-11-01 11:48:32 +08:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2016-09-23 09:21:37 +08:00
*/
2018-04-12 15:38:39 +08:00
esp_err_t ledc_set_fade ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t duty , ledc_duty_direction_t fade_direction ,
2019-08-09 20:30:19 +08:00
uint32_t step_num , uint32_t duty_cycle_num , uint32_t duty_scale ) ;
2016-09-23 09:21:37 +08:00
/**
2016-12-25 23:11:24 +08: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 17:33:51 +08:00
*
2016-12-25 23:11:24 +08: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 handle Pointer to return handle . If non - NULL , a handle for the interrupt will
* be returned here .
2016-11-01 11:48:32 +08:00
*
* @ return
* - ESP_OK Success
2023-09-20 12:47:21 +08:00
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_ERR_NOT_FOUND Failed to find available interrupt source
2016-09-23 09:21:37 +08:00
*/
2022-11-03 10:37:04 +08:00
esp_err_t ledc_isr_register ( void ( * fn ) ( void * ) , void * arg , int intr_alloc_flags , ledc_isr_handle_t * handle ) ;
2016-09-23 09:21:37 +08:00
2016-09-26 09:56:03 +08:00
/**
2024-12-05 15:10:54 +08:00
* @ brief Configure LEDC timer settings
*
* This function does not take care of whether the chosen clock source is enabled or not , also does not handle the clock source
* to meet channel sleep mode choice .
*
* If the chosen clock source is a new clock source to the LEDC timer , please use ` ledc_timer_config ` ;
* If the clock source is kept to be the same , but frequency needs to be updated , please use ` ledc_set_freq ` .
2016-09-26 09:56:03 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2017-10-23 05:32:47 +02: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
2023-09-20 12:47:21 +08:00
* @ param duty_resolution Resolution of duty setting in number of bits . The range is [ 1 , SOC_LEDC_TIMER_BIT_WIDTH ]
2016-12-25 23:11:24 +08:00
* @ param clk_src Select LEDC source clock .
2016-09-26 09:56:03 +08:00
*
2016-11-01 11:48:32 +08:00
* @ return
* - ( - 1 ) Parameter error
* - Other Current LEDC duty
2016-09-26 09:56:03 +08:00
*/
2024-12-05 15:10:54 +08: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 ) __attribute__ ( ( deprecated ( " Please use ledc_timer_config() or ledc_set_freq() " ) ) ) ;
2016-09-26 09:56:03 +08:00
/**
2016-12-25 23:11:24 +08:00
* @ brief Reset LEDC timer
2016-09-26 09:56:03 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2017-10-23 05:32:47 +02:00
* @ param timer_sel LEDC timer index ( 0 - 3 ) , select from ledc_timer_t
2016-09-26 09:56:03 +08:00
*
2016-11-01 11:48:32 +08:00
* @ return
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_OK Success
2016-09-26 09:56:03 +08:00
*/
2019-08-09 20:30:19 +08:00
esp_err_t ledc_timer_rst ( ledc_mode_t speed_mode , ledc_timer_t timer_sel ) ;
2016-09-23 09:21:37 +08:00
2016-09-26 09:56:03 +08:00
/**
2016-12-25 23:11:24 +08:00
* @ brief Pause LEDC timer counter
2016-09-26 09:56:03 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2017-10-23 05:32:47 +02:00
* @ param timer_sel LEDC timer index ( 0 - 3 ) , select from ledc_timer_t
2016-09-26 09:56:03 +08:00
*
2016-11-01 11:48:32 +08:00
* @ return
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_OK Success
2016-09-26 09:56:03 +08:00
*/
2019-08-09 20:30:19 +08:00
esp_err_t ledc_timer_pause ( ledc_mode_t speed_mode , ledc_timer_t timer_sel ) ;
2016-09-23 09:21:37 +08:00
2016-09-26 09:56:03 +08:00
/**
2016-12-25 23:11:24 +08:00
* @ brief Resume LEDC timer
2016-09-26 09:56:03 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2017-10-23 05:32:47 +02:00
* @ param timer_sel LEDC timer index ( 0 - 3 ) , select from ledc_timer_t
2016-09-26 09:56:03 +08:00
*
2016-11-01 11:48:32 +08:00
* @ return
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_OK Success
2016-09-26 09:56:03 +08:00
*/
2019-08-09 20:30:19 +08:00
esp_err_t ledc_timer_resume ( ledc_mode_t speed_mode , ledc_timer_t timer_sel ) ;
2016-09-23 09:21:37 +08:00
2016-09-26 09:56:03 +08:00
/**
2016-12-25 23:11:24 +08:00
* @ brief Bind LEDC channel with the selected timer
2016-09-26 09:56:03 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2021-07-08 17:47:05 +08:00
* @ param channel LEDC channel index ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
2019-08-09 20:30:19 +08:00
* @ param timer_sel LEDC timer index ( 0 - 3 ) , select from ledc_timer_t
2016-09-26 09:56:03 +08:00
*
2016-12-25 23:11:24 +08:00
* @ return
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_OK Success
*/
2019-08-09 20:30:19 +08:00
esp_err_t ledc_bind_channel_timer ( ledc_mode_t speed_mode , ledc_channel_t channel , ledc_timer_t timer_sel ) ;
2016-12-25 23:11:24 +08:00
/**
2018-04-12 15:38:39 +08:00
* @ brief Set LEDC fade function .
2023-09-20 12:47:21 +08:00
*
2018-04-12 15:38:39 +08:00
* @ note Call ledc_fade_func_install ( ) once before calling this function .
2016-12-25 23:11:24 +08:00
* Call ledc_fade_start ( ) after this to start fading .
2018-04-12 15:38:39 +08:00
* @ note ledc_set_fade_with_step , ledc_set_fade_with_time and ledc_fade_start are not thread - safe , do not call these functions to
* control one LEDC channel in different tasks at the same time .
* A thread - safe version of API is ledc_set_fade_step_and_start
2022-01-10 21:07:58 +08:00
* @ note For ESP32 , hardware does not support any duty change while a fade operation is running in progress on that channel .
2018-04-12 15:38:39 +08:00
* Other duty operations will have to wait until the fade operation has finished .
2023-09-20 12:47:21 +08:00
*
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2021-07-08 17:47:05 +08:00
* @ param channel LEDC channel index ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
2023-09-20 12:47:21 +08:00
* @ param target_duty Target duty of fading [ 0 , ( 2 * * duty_resolution ) ]
2016-12-25 23:11:24 +08: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 09:56:03 +08:00
*
2016-11-01 11:48:32 +08:00
* @ return
* - ESP_OK Success
2023-09-20 12:47:21 +08:00
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_ERR_INVALID_STATE Channel not initialized
2017-02-08 19:52:18 +08:00
* - ESP_FAIL Fade function init error
2016-09-26 09:56:03 +08:00
*/
2018-04-12 15:38:39 +08:00
esp_err_t ledc_set_fade_with_step ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t target_duty , uint32_t scale , uint32_t cycle_num ) ;
2016-12-25 23:11:24 +08:00
/**
2018-04-12 15:38:39 +08:00
* @ brief Set LEDC fade function , with a limited time .
2023-09-20 12:47:21 +08:00
*
2018-04-12 15:38:39 +08:00
* @ note Call ledc_fade_func_install ( ) once before calling this function .
2016-12-25 23:11:24 +08:00
* Call ledc_fade_start ( ) after this to start fading .
2018-04-12 15:38:39 +08:00
* @ note ledc_set_fade_with_step , ledc_set_fade_with_time and ledc_fade_start are not thread - safe , do not call these functions to
* control one LEDC channel in different tasks at the same time .
* A thread - safe version of API is ledc_set_fade_step_and_start
2022-01-10 21:07:58 +08:00
* @ note For ESP32 , hardware does not support any duty change while a fade operation is running in progress on that channel .
2018-04-12 15:38:39 +08:00
* Other duty operations will have to wait until the fade operation has finished .
2023-09-20 12:47:21 +08:00
*
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2021-07-08 17:47:05 +08:00
* @ param channel LEDC channel index ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
2023-09-20 12:47:21 +08:00
* @ param target_duty Target duty of fading [ 0 , ( 2 * * duty_resolution ) ]
2025-02-07 20:41:17 +08:00
* @ param desired_fade_time_ms The intended time of the fading ( ms ) .
* Note that the actual time it takes to complete the fade could vary by a factor of up to 2 x shorter
* or longer than the expected time due to internal rounding errors in calculations .
* Specifically :
* * The total number of cycles ( total_cycle_num = desired_fade_time_ms * freq / 1000 )
* * The difference in duty cycle ( duty_delta = | target_duty - current_duty | )
* The fade may complete faster than expected if total_cycle_num larger than duty_delta . Conversely ,
* it may take longer than expected if total_cycle_num is less than duty_delta .
* The closer the ratio of total_cycle_num / duty_delta ( or its inverse ) is to a whole number ( the floor value ) ,
* the more accurately the actual fade duration will match the intended time .
* If an exact fade time is expected , please consider to split the entire fade into several smaller linear fades .
* The split should make each fade step has a divisible total_cycle_num / duty_delta ( or its inverse ) ratio .
2016-12-25 23:11:24 +08:00
*
* @ return
* - ESP_OK Success
2023-09-20 12:47:21 +08:00
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_ERR_INVALID_STATE Channel not initialized
2017-02-08 19:52:18 +08:00
* - ESP_FAIL Fade function init error
2016-09-23 09:21:37 +08:00
*/
2025-02-07 20:41:17 +08:00
esp_err_t ledc_set_fade_with_time ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t target_duty , int desired_fade_time_ms ) ;
2016-09-23 09:21:37 +08:00
2016-12-25 23:11:24 +08:00
/**
2018-04-12 15:38:39 +08:00
* @ brief Install LEDC fade function . This function will occupy interrupt of LEDC module .
2023-09-20 12:47:21 +08:00
*
2016-12-25 23:11:24 +08:00
* @ 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
2023-09-20 12:47:21 +08:00
* - ESP_ERR_INVALID_ARG Intr flag error
* - ESP_ERR_NOT_FOUND Failed to find available interrupt source
* - ESP_ERR_INVALID_STATE Fade function already installed
2016-12-25 23:11:24 +08:00
*/
esp_err_t ledc_fade_func_install ( int intr_alloc_flags ) ;
2016-09-23 09:21:37 +08:00
2016-12-25 23:11:24 +08:00
/**
* @ brief Uninstall LEDC fade function .
*/
2019-07-16 16:33:30 +07:00
void ledc_fade_func_uninstall ( void ) ;
2016-09-23 09:21:37 +08:00
2016-12-25 23:11:24 +08:00
/**
* @ brief Start LEDC fading .
2023-09-20 12:47:21 +08:00
*
2018-04-12 15:38:39 +08:00
* @ note Call ledc_fade_func_install ( ) once before calling this function .
* Call this API right after ledc_set_fade_with_time or ledc_set_fade_with_step before to start fading .
2022-01-10 21:07:58 +08:00
* @ note Starting fade operation with this API is not thread - safe , use with care .
* @ note For ESP32 , hardware does not support any duty change while a fade operation is running in progress on that channel .
2018-04-12 15:38:39 +08:00
* Other duty operations will have to wait until the fade operation has finished .
2023-09-20 12:47:21 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2016-12-25 23:11:24 +08:00
* @ param channel LEDC channel number
2021-07-29 13:54:17 +08:00
* @ param fade_mode Whether to block until fading done . See ledc_types . h ledc_fade_mode_t for more info .
* Note that this function will not return until fading to the target duty if LEDC_FADE_WAIT_DONE mode is selected .
2016-12-25 23:11:24 +08:00
*
* @ return
* - ESP_OK Success
2023-09-20 12:47:21 +08:00
* - ESP_ERR_INVALID_STATE Channel not initialized or fade function not installed .
2016-12-25 23:11:24 +08:00
* - ESP_ERR_INVALID_ARG Parameter error .
*/
2018-04-12 15:38:39 +08:00
esp_err_t ledc_fade_start ( ledc_mode_t speed_mode , ledc_channel_t channel , ledc_fade_mode_t fade_mode ) ;
2022-01-10 21:07:58 +08:00
# if SOC_LEDC_SUPPORT_FADE_STOP
/**
2024-03-25 14:11:33 +08:00
* @ brief Stop LEDC fading . The duty of the channel is guaranteed to be fixed at most one PWM cycle after the function returns .
2023-09-20 12:47:21 +08:00
*
2022-01-10 21:07:58 +08:00
* @ note This API can be called if a new fixed duty or a new fade want to be set while the last fade operation is still running in progress .
* @ note Call this API will abort the fading operation only if it was started by calling ledc_fade_start with LEDC_FADE_NO_WAIT mode .
2024-03-25 14:11:33 +08:00
* @ note If a fade was started with LEDC_FADE_WAIT_DONE mode , calling this API afterwards has no use in stopping the fade . Fade will continue until it reaches the target duty .
2023-09-20 12:47:21 +08:00
*
2022-01-10 21:07:58 +08:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
* @ param channel LEDC channel number
*
* @ return
* - ESP_OK Success
2023-09-20 12:47:21 +08:00
* - ESP_ERR_INVALID_STATE Channel not initialized
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_FAIL Fade function init error
2022-01-10 21:07:58 +08:00
*/
esp_err_t ledc_fade_stop ( ledc_mode_t speed_mode , ledc_channel_t channel ) ;
2022-11-03 10:37:04 +08:00
# endif //SOC_LEDC_SUPPORT_FADE_STOP
2022-01-10 21:07:58 +08:00
2018-04-12 15:38:39 +08:00
/**
2018-07-10 01:25:31 +08:00
* @ brief A thread - safe API to set duty for LEDC channel and return when duty updated .
2023-09-20 12:47:21 +08:00
*
2022-01-10 21:07:58 +08:00
* @ note For ESP32 , hardware does not support any duty change while a fade operation is running in progress on that channel .
2018-04-12 15:38:39 +08:00
* Other duty operations will have to wait until the fade operation has finished .
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2021-07-08 17:47:05 +08:00
* @ param channel LEDC channel ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
2023-09-20 12:47:21 +08:00
* @ param duty Set the LEDC duty , the range of duty setting is [ 0 , ( 2 * * duty_resolution ) ]
* @ param hpoint Set the LEDC hpoint value , the range is [ 0 , ( 2 * * duty_resolution ) - 1 ]
2018-04-12 15:38:39 +08:00
*
2023-09-20 12:47:21 +08:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_STATE Channel not initialized
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_FAIL Fade function init error
2018-04-12 15:38:39 +08:00
*/
esp_err_t ledc_set_duty_and_update ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t duty , uint32_t hpoint ) ;
2016-09-23 09:21:37 +08:00
2018-04-12 15:38:39 +08:00
/**
* @ brief A thread - safe API to set and start LEDC fade function , with a limited time .
2023-09-20 12:47:21 +08:00
*
2018-04-12 15:38:39 +08:00
* @ note Call ledc_fade_func_install ( ) once , before calling this function .
2022-01-10 21:07:58 +08:00
* @ note For ESP32 , hardware does not support any duty change while a fade operation is running in progress on that channel .
2018-04-12 15:38:39 +08:00
* Other duty operations will have to wait until the fade operation has finished .
2023-09-20 12:47:21 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2021-07-08 17:47:05 +08:00
* @ param channel LEDC channel index ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
2023-09-20 12:47:21 +08:00
* @ param target_duty Target duty of fading [ 0 , ( 2 * * duty_resolution ) ]
2025-02-07 20:41:17 +08:00
* @ param desired_fade_time_ms The intended time of the fading ( ms ) .
* Note that the actual time it takes to complete the fade could vary by a factor of up to 2 x shorter
* or longer than the expected time due to internal rounding errors in calculations .
* Specifically :
* * The total number of cycles ( total_cycle_num = desired_fade_time_ms * freq / 1000 )
* * The difference in duty cycle ( duty_delta = | target_duty - current_duty | )
* The fade may complete faster than expected if total_cycle_num larger than duty_delta . Conversely ,
* it may take longer than expected if total_cycle_num is less than duty_delta .
* The closer the ratio of total_cycle_num / duty_delta ( or its inverse ) is to a whole number ( the floor value ) ,
* the more accurately the actual fade duration will match the intended time .
* If an exact fade time is expected , please consider to split the entire fade into several smaller linear fades .
* The split should make each fade step has a divisible total_cycle_num / duty_delta ( or its inverse ) ratio .
2018-04-12 15:38:39 +08:00
* @ param fade_mode choose blocking or non - blocking mode
2023-09-20 12:47:21 +08:00
*
2018-04-12 15:38:39 +08:00
* @ return
* - ESP_OK Success
2023-09-20 12:47:21 +08:00
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_ERR_INVALID_STATE Channel not initialized
2018-04-12 15:38:39 +08:00
* - ESP_FAIL Fade function init error
*/
2025-02-07 20:41:17 +08:00
esp_err_t ledc_set_fade_time_and_start ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t target_duty , uint32_t desired_fade_time_ms , ledc_fade_mode_t fade_mode ) ;
2018-04-12 15:38:39 +08:00
/**
* @ brief A thread - safe API to set and start LEDC fade function .
2023-09-20 12:47:21 +08:00
*
2018-04-12 15:38:39 +08:00
* @ note Call ledc_fade_func_install ( ) once before calling this function .
2022-01-10 21:07:58 +08:00
* @ note For ESP32 , hardware does not support any duty change while a fade operation is running in progress on that channel .
2018-04-12 15:38:39 +08:00
* Other duty operations will have to wait until the fade operation has finished .
2023-09-20 12:47:21 +08:00
*
2020-02-10 10:33:27 +11:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
2021-07-08 17:47:05 +08:00
* @ param channel LEDC channel index ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
2023-09-20 12:47:21 +08:00
* @ param target_duty Target duty of fading [ 0 , ( 2 * * duty_resolution ) ]
2018-04-12 15:38:39 +08:00
* @ param scale Controls the increase or decrease step scale .
* @ param cycle_num increase or decrease the duty every cycle_num cycles
* @ param fade_mode choose blocking or non - blocking mode
2023-09-20 12:47:21 +08:00
*
2018-04-12 15:38:39 +08:00
* @ return
* - ESP_OK Success
2023-09-20 12:47:21 +08:00
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_ERR_INVALID_STATE Channel not initialized
2018-04-12 15:38:39 +08:00
* - ESP_FAIL Fade function init error
*/
esp_err_t ledc_set_fade_step_and_start ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t target_duty , uint32_t scale , uint32_t cycle_num , ledc_fade_mode_t fade_mode ) ;
2021-07-08 17:47:05 +08:00
/**
* @ brief LEDC callback registration function
2023-09-20 12:47:21 +08:00
*
2021-07-08 17:47:05 +08:00
* @ note The callback is called from an ISR , it must never attempt to block , and any FreeRTOS API called must be ISR capable .
2023-09-20 12:47:21 +08:00
*
2021-07-08 17:47:05 +08:00
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
* @ param channel LEDC channel index ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
* @ param cbs Group of LEDC callback functions
* @ param user_arg user registered data for the callback function
2023-09-20 12:47:21 +08:00
*
2021-07-08 17:47:05 +08:00
* @ return
* - ESP_OK Success
2023-09-20 12:47:21 +08:00
* - ESP_ERR_INVALID_ARG Parameter error
* - ESP_ERR_INVALID_STATE Channel not initialized
2021-07-08 17:47:05 +08:00
* - ESP_FAIL Fade function init error
*/
esp_err_t ledc_cb_register ( ledc_mode_t speed_mode , ledc_channel_t channel , ledc_cbs_t * cbs , void * user_arg ) ;
2022-11-03 10:37:04 +08:00
2023-02-23 11:24:48 +08:00
# if SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED
/**
* @ brief Structure for the fade parameters for one hardware fade to be written to gamma wr register
*
* @ verbatim
* duty ^ ONE HW LINEAR FADE
* |
* |
* |
* |
* start_duty + scale * n = end_duty | . . . . . . . . . . . . . . . . . . . . . . . . . . + -
* | |
* | |
* | + - - - - - - - - +
* | | .
* | | .
* | - - - - - - - + .
* | . .
* | . .
* | . .
* | . .
* ^ - - - | . . . . . . . . . . + - - - - - - - - .
* scale | | | .
* | | | .
* v - - - | . . . . . + - - - - - - - - - + .
* | | . .
* | | . .
* start_duty + - - - - - - - - - + . .
* | . . .
* | . . .
* + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >
* PWM cycle
* | | | |
* | 1 step | 1 step | |
* | < - - - - - - - > | < - - - - - - - > | |
* | m cycles m cycles |
* | |
* < - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >
* n total steps
* cycles = m * n
* @ endverbatim
*
* @ note Be aware of the maximum value available on each element
*/
typedef struct {
2023-12-28 14:54:19 +08:00
uint32_t dir : 1 ; /*!< Duty change direction. Set 1 as increase, 0 as decrease */
uint32_t cycle_num : SOC_LEDC_FADE_PARAMS_BIT_WIDTH ; /*!< Number of PWM cycles of each step [0, 2**SOC_LEDC_FADE_PARAMS_BIT_WIDTH-1] */
uint32_t scale : SOC_LEDC_FADE_PARAMS_BIT_WIDTH ; /*!< Duty change of each step [0, 2**SOC_LEDC_FADE_PARAMS_BIT_WIDTH-1] */
uint32_t step_num : SOC_LEDC_FADE_PARAMS_BIT_WIDTH ; /*!< Total number of steps in one hardware fade [0, 2**SOC_LEDC_FADE_PARAMS_BIT_WIDTH-1] */
2023-02-23 11:24:48 +08:00
} ledc_fade_param_config_t ;
/**
* @ brief Set a LEDC multi - fade
*
* @ note Call ` ledc_fade_func_install ( ) ` once before calling this function .
* Call ` ledc_fade_start ( ) ` after this to start fading .
* @ note This function is not thread - safe , do not call it to control one LEDC channel in different tasks at the same time .
* A thread - safe version of API is ledc_set_multi_fade_and_start
* @ note This function does not prohibit from duty overflow . User should take care of this by themselves . If duty
* overflow happens , the PWM signal will suddenly change from 100 % duty cycle to 0 % , or the other way around .
*
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
* @ param channel LEDC channel index ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
* @ param start_duty Set the start of the gradient duty , the range of duty setting is [ 0 , ( 2 * * duty_resolution ) ]
* @ param fade_params_list Pointer to the array of fade parameters for a multi - fade
* @ param list_len Length of the fade_params_list , i . e . number of fade ranges for a multi - fade ( 1 - SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX )
2023-09-20 12:47:21 +08:00
*
2023-02-23 11:24:48 +08:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2023-09-20 12:47:21 +08:00
* - ESP_ERR_INVALID_STATE Channel not initialized
2023-02-23 11:24:48 +08:00
* - ESP_FAIL Fade function init error
*/
esp_err_t ledc_set_multi_fade ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t start_duty , const ledc_fade_param_config_t * fade_params_list , uint32_t list_len ) ;
/**
* @ brief A thread - safe API to set and start LEDC multi - fade function
*
* @ note Call ` ledc_fade_func_install ( ) ` once before calling this function .
* @ note Fade will always begin from the current duty cycle . Make sure it is stable and synchronized to the desired
* initial value before calling this function . Otherwise , you may see unexpected duty change .
* @ note This function does not prohibit from duty overflow . User should take care of this by themselves . If duty
* overflow happens , the PWM signal will suddenly change from 100 % duty cycle to 0 % , or the other way around .
*
* @ param speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
* @ param channel LEDC channel index ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
* @ param start_duty Set the start of the gradient duty , the range of duty setting is [ 0 , ( 2 * * duty_resolution ) ]
* @ param fade_params_list Pointer to the array of fade parameters for a multi - fade
* @ param list_len Length of the fade_params_list , i . e . number of fade ranges for a multi - fade ( 1 - SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX )
* @ param fade_mode Choose blocking or non - blocking mode
2023-09-20 12:47:21 +08:00
*
2023-02-23 11:24:48 +08:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2023-09-20 12:47:21 +08:00
* - ESP_ERR_INVALID_STATE Channel not initialized
2023-02-23 11:24:48 +08:00
* - ESP_FAIL Fade function init error
*/
esp_err_t ledc_set_multi_fade_and_start ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t start_duty , const ledc_fade_param_config_t * fade_params_list , uint32_t list_len , ledc_fade_mode_t fade_mode ) ;
/**
* @ brief Helper function to fill the fade params for a multi - fade . Useful if desires a gamma curve fading .
*
* @ note The fade params are calculated based on the given start_duty and end_duty . If the duty is not at
* the start duty ( gamma - corrected ) when the fade begins , you may see undesired brightness change .
* Therefore , please always remember thet when passing the fade_params to either ` ledc_set_multi_fade ` or
* ` ledc_set_multi_fade_and start ` , the start_duty argument has to be the gamma - corrected start_duty .
*
* @ param [ in ] speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
* @ param [ in ] channel LEDC channel index ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
* @ param [ in ] start_duty Duty cycle [ 0 , ( 2 * * duty_resolution ) ] where the multi - fade begins with . This value should be a non - gamma - corrected duty cycle .
* @ param [ in ] end_duty Duty cycle [ 0 , ( 2 * * duty_resolution ) ] where the multi - fade ends with . This value should be a non - gamma - corrected duty cycle .
* @ param [ in ] linear_phase_num Number of linear fades to simulate a gamma curved fade ( 1 - SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX )
* @ param [ in ] max_fade_time_ms The maximum time of the fading ( ms ) .
* @ param [ in ] gamma_correction_operator User provided gamma correction function . The function argument should be able to
* take any value within [ 0 , ( 2 * * duty_resolution ) ] . And returns the gamma - corrected duty cycle .
* @ param [ in ] fade_params_list_size The size of the fade_params_list user allocated ( 1 - SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX )
* @ param [ out ] fade_params_list Pointer to the array of ledc_fade_param_config_t structure
* @ param [ out ] hw_fade_range_num Number of fade ranges for this multi - fade
2023-09-20 12:47:21 +08:00
*
2023-02-23 11:24:48 +08:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2023-09-20 12:47:21 +08:00
* - ESP_ERR_INVALID_STATE Channel not initialized
2023-02-23 11:24:48 +08:00
* - ESP_FAIL Required number of hardware ranges exceeds the size of the ledc_fade_param_config_t array user allocated
*/
esp_err_t ledc_fill_multi_fade_param_list ( ledc_mode_t speed_mode , ledc_channel_t channel ,
uint32_t start_duty , uint32_t end_duty ,
uint32_t linear_phase_num , uint32_t max_fade_time_ms ,
uint32_t ( * gamma_correction_operator ) ( uint32_t ) ,
uint32_t fade_params_list_size ,
ledc_fade_param_config_t * fade_params_list , uint32_t * hw_fade_range_num ) ;
/**
* @ brief Get the fade parameters that are stored in gamma ram for a certain fade range
*
* Gamma ram is where saves the fade parameters for each fade range . The fade parameters are written in during fade
* configuration . When fade begins , the duty will change according to the parameters in gamma ram .
*
* @ param [ in ] speed_mode Select the LEDC channel group with specified speed mode . Note that not all targets support high speed mode .
* @ param [ in ] channel LEDC channel index ( 0 - LEDC_CHANNEL_MAX - 1 ) , select from ledc_channel_t
* @ param [ in ] range Range index ( 0 - ( SOC_LEDC_GAMMA_CURVE_FADE_RANGE_MAX - 1 ) ) , it specifies to which range in gamma ram to read
* @ param [ out ] dir Pointer to accept fade direction value
* @ param [ out ] cycle Pointer to accept fade cycle value
* @ param [ out ] scale Pointer to accept fade scale value
* @ param [ out ] step Pointer to accept fade step value
2023-09-20 12:47:21 +08:00
*
2023-02-23 11:24:48 +08:00
* @ return
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Parameter error
2023-09-20 12:47:21 +08:00
* - ESP_ERR_INVALID_STATE Channel not initialized
2023-02-23 11:24:48 +08:00
*/
esp_err_t ledc_read_fade_param ( ledc_mode_t speed_mode , ledc_channel_t channel , uint32_t range , uint32_t * dir , uint32_t * cycle , uint32_t * scale , uint32_t * step ) ;
# endif // SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED
2021-12-24 02:05:43 +03:00
# ifdef __cplusplus
}
# endif