| 
									
										
										
										
											2021-05-24 02:09:38 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * SPDX-FileCopyrightText: 2019-2021 Espressif Systems (Shanghai) CO LTD | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: Apache-2.0 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <esp_types.h>
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <ctype.h>
 | 
					
						
							|  |  |  | #include "freertos/FreeRTOS.h"
 | 
					
						
							|  |  |  | #include "freertos/semphr.h"
 | 
					
						
							|  |  |  | #include "freertos/timers.h"
 | 
					
						
							|  |  |  | #include "esp_log.h"
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | #include "esp_pm.h"
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | #include "soc/rtc.h"
 | 
					
						
							| 
									
										
										
										
											2020-04-02 11:20:38 +08:00
										 |  |  | #include "driver/rtc_io.h"
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | #include "sys/lock.h"
 | 
					
						
							|  |  |  | #include "driver/gpio.h"
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | #include "driver/adc.h"
 | 
					
						
							|  |  |  | #include "adc1_private.h"
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | #include "hal/adc_types.h"
 | 
					
						
							|  |  |  | #include "hal/adc_hal.h"
 | 
					
						
							| 
									
										
										
										
											2021-09-07 11:21:35 +08:00
										 |  |  | #include "hal/adc_hal_conf.h"
 | 
					
						
							| 
									
										
										
										
											2020-11-26 19:56:13 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-06 21:56:27 +08:00
										 |  |  | #if SOC_DAC_SUPPORTED
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | #include "driver/dac.h"
 | 
					
						
							| 
									
										
										
										
											2020-04-15 20:51:27 +08:00
										 |  |  | #include "hal/dac_hal.h"
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-07 11:21:35 +08:00
										 |  |  | #if CONFIG_IDF_TARGET_ESP32S3
 | 
					
						
							|  |  |  | #include "esp_efuse_rtc_calib.h"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define ADC_CHECK_RET(fun_ret) ({                  \
 | 
					
						
							|  |  |  |     if (fun_ret != ESP_OK) {                                \ | 
					
						
							|  |  |  |         ESP_LOGE(ADC_TAG,"%s:%d\n",__FUNCTION__,__LINE__);  \ | 
					
						
							|  |  |  |         return ESP_FAIL;                                    \ | 
					
						
							|  |  |  |     }                                                       \ | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const char *ADC_TAG = "ADC"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define ADC_CHECK(a, str, ret_val) ({                                               \
 | 
					
						
							|  |  |  |     if (!(a)) {                                                                     \ | 
					
						
							| 
									
										
										
										
											2020-07-29 20:46:37 +08:00
										 |  |  |         ESP_LOGE(ADC_TAG,"%s(%d): %s", __FUNCTION__, __LINE__, str);                \ | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |         return (ret_val);                                                           \ | 
					
						
							|  |  |  |     }                                                                               \ | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define ADC_GET_IO_NUM(periph, channel) (adc_channel_io_map[periph][channel])
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define ADC_CHANNEL_CHECK(periph, channel) ADC_CHECK(channel < SOC_ADC_CHANNEL_NUM(periph), "ADC"#periph" channel error", ESP_ERR_INVALID_ARG)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | //////////////////////// Locks ///////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | extern portMUX_TYPE rtc_spinlock; //TODO: Will be placed in the appropriate position after the rtc module is finished.
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define RTC_ENTER_CRITICAL()    portENTER_CRITICAL(&rtc_spinlock)
 | 
					
						
							|  |  |  | #define RTC_EXIT_CRITICAL()     portEXIT_CRITICAL(&rtc_spinlock)
 | 
					
						
							|  |  |  | #define DIGI_ENTER_CRITICAL()
 | 
					
						
							|  |  |  | #define DIGI_EXIT_CRITICAL()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define ADC_POWER_ENTER()       RTC_ENTER_CRITICAL()
 | 
					
						
							|  |  |  | #define ADC_POWER_EXIT()        RTC_EXIT_CRITICAL()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define DIGI_CONTROLLER_ENTER() DIGI_ENTER_CRITICAL()
 | 
					
						
							|  |  |  | #define DIGI_CONTROLLER_EXIT()  DIGI_EXIT_CRITICAL()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SARADC1_ENTER()         RTC_ENTER_CRITICAL()
 | 
					
						
							|  |  |  | #define SARADC1_EXIT()          RTC_EXIT_CRITICAL()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SARADC2_ENTER()         RTC_ENTER_CRITICAL()
 | 
					
						
							|  |  |  | #define SARADC2_EXIT()          RTC_EXIT_CRITICAL()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //n stands for ADC unit: 1 for ADC1 and 2 for ADC2. Currently both unit touches the same registers
 | 
					
						
							|  |  |  | #define VREF_ENTER(n)           RTC_ENTER_CRITICAL()
 | 
					
						
							|  |  |  | #define VREF_EXIT(n)            RTC_EXIT_CRITICAL()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define FSM_ENTER()             RTC_ENTER_CRITICAL()
 | 
					
						
							|  |  |  | #define FSM_EXIT()              RTC_EXIT_CRITICAL()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  | //TODO: IDF-3610
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | #if CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
 | 
					
						
							|  |  |  | //prevent ADC1 being used by I2S dma and other tasks at the same time.
 | 
					
						
							|  |  |  | static _lock_t adc1_dma_lock; | 
					
						
							|  |  |  | #define SARADC1_ACQUIRE() _lock_acquire( &adc1_dma_lock )
 | 
					
						
							|  |  |  | #define SARADC1_RELEASE() _lock_release( &adc1_dma_lock )
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  | In ADC2, there're two locks used for different cases: | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | 1. lock shared with app and Wi-Fi: | 
					
						
							|  |  |  |    ESP32: | 
					
						
							|  |  |  |         When Wi-Fi using the ADC2, we assume it will never stop, so app checks the lock and returns immediately if failed. | 
					
						
							|  |  |  |    ESP32S2: | 
					
						
							|  |  |  |         The controller's control over the ADC is determined by the arbiter. There is no need to control by lock. | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 2. lock shared between tasks: | 
					
						
							|  |  |  |    when several tasks sharing the ADC2, we want to guarantee | 
					
						
							|  |  |  |    all the requests will be handled. | 
					
						
							|  |  |  |    Since conversions are short (about 31us), app returns the lock very soon, | 
					
						
							|  |  |  |    we use a spinlock to stand there waiting to do conversions one by one. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | adc2_spinlock should be acquired first, then adc2_wifi_lock or rtc_spinlock. | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2020-12-03 13:58:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | #ifdef CONFIG_IDF_TARGET_ESP32
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | //prevent ADC2 being used by wifi and other tasks at the same time.
 | 
					
						
							|  |  |  | static _lock_t adc2_wifi_lock; | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | /** For ESP32S2 the ADC2 The right to use ADC2 is controlled by the arbiter, and there is no need to set a lock. */ | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | #define SARADC2_ACQUIRE()       _lock_acquire( &adc2_wifi_lock )
 | 
					
						
							|  |  |  | #define SARADC2_RELEASE()       _lock_release( &adc2_wifi_lock )
 | 
					
						
							|  |  |  | #define SARADC2_TRY_ACQUIRE()   _lock_try_acquire( &adc2_wifi_lock )
 | 
					
						
							|  |  |  | #define SARADC2_LOCK_CHECK()    ((uint32_t *)adc2_wifi_lock != NULL)
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | #elif CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
 | 
					
						
							|  |  |  | #define SARADC2_ACQUIRE()
 | 
					
						
							|  |  |  | #define SARADC2_RELEASE()
 | 
					
						
							|  |  |  | #define SARADC2_TRY_ACQUIRE()   (0)     //WIFI controller and rtc controller have independent parameter configuration.
 | 
					
						
							|  |  |  | #define SARADC2_LOCK_CHECK()    (true)
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | #endif // CONFIG_IDF_TARGET_*
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-08 17:38:46 +08:00
										 |  |  | #if CONFIG_IDF_TARGET_ESP32S2
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | #ifdef CONFIG_PM_ENABLE
 | 
					
						
							|  |  |  | static esp_pm_lock_handle_t s_adc2_arbiter_lock; | 
					
						
							|  |  |  | #endif  //CONFIG_PM_ENABLE
 | 
					
						
							| 
									
										
										
										
											2020-11-26 19:56:13 +11:00
										 |  |  | #endif  // !CONFIG_IDF_TARGET_ESP32
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-07 11:21:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | /*---------------------------------------------------------------
 | 
					
						
							|  |  |  |                     ADC Common | 
					
						
							|  |  |  | ---------------------------------------------------------------*/ | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | // ADC Power
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // This gets incremented when adc_power_acquire() is called, and decremented when
 | 
					
						
							|  |  |  | // adc_power_release() is called. ADC is powered down when the value reaches zero.
 | 
					
						
							|  |  |  | // Should be modified within critical section (ADC_ENTER/EXIT_CRITICAL).
 | 
					
						
							|  |  |  | static int s_adc_power_on_cnt; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void adc_power_on_internal(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* Set the power always on to increase precision. */ | 
					
						
							|  |  |  |     adc_hal_set_power_manage(ADC_POWER_SW_ON); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 13:58:24 +08:00
										 |  |  | void adc_power_acquire(void) | 
					
						
							| 
									
										
										
										
											2020-12-03 13:58:24 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     ADC_POWER_ENTER(); | 
					
						
							| 
									
										
										
										
											2020-12-03 13:58:24 +08:00
										 |  |  |     s_adc_power_on_cnt++; | 
					
						
							|  |  |  |     if (s_adc_power_on_cnt == 1) { | 
					
						
							|  |  |  |         adc_power_on_internal(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     ADC_POWER_EXIT(); | 
					
						
							| 
									
										
										
										
											2020-12-03 13:58:24 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | void adc_power_on(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ADC_POWER_ENTER(); | 
					
						
							|  |  |  |     adc_power_on_internal(); | 
					
						
							|  |  |  |     ADC_POWER_EXIT(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void adc_power_off_internal(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-03-26 12:18:31 +08:00
										 |  |  | #if CONFIG_IDF_TARGET_ESP32
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     adc_hal_set_power_manage(ADC_POWER_SW_OFF); | 
					
						
							| 
									
										
										
										
											2021-03-26 12:18:31 +08:00
										 |  |  | #else
 | 
					
						
							|  |  |  |     adc_hal_set_power_manage(ADC_POWER_BY_FSM); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 13:58:24 +08:00
										 |  |  | void adc_power_release(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     ADC_POWER_ENTER(); | 
					
						
							| 
									
										
										
										
											2020-12-03 13:58:24 +08:00
										 |  |  |     s_adc_power_on_cnt--; | 
					
						
							|  |  |  |     /* Sanity check */ | 
					
						
							|  |  |  |     if (s_adc_power_on_cnt < 0) { | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |         ADC_POWER_EXIT(); | 
					
						
							| 
									
										
										
										
											2020-12-03 13:58:24 +08:00
										 |  |  |         ESP_LOGE(ADC_TAG, "%s called, but s_adc_power_on_cnt == 0", __func__); | 
					
						
							|  |  |  |         abort(); | 
					
						
							|  |  |  |     } else if (s_adc_power_on_cnt == 0) { | 
					
						
							|  |  |  |         adc_power_off_internal(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     ADC_POWER_EXIT(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | void adc_power_off(void) | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     ADC_POWER_ENTER(); | 
					
						
							|  |  |  |     adc_power_off_internal(); | 
					
						
							|  |  |  |     ADC_POWER_EXIT(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 19:04:38 +08:00
										 |  |  | esp_err_t adc1_pad_get_io_num(adc1_channel_t channel, gpio_num_t *gpio_num) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ADC_CHANNEL_CHECK(ADC_NUM_1, channel); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     int io = ADC_GET_IO_NUM(ADC_NUM_1, channel); | 
					
						
							|  |  |  |     if (io < 0) { | 
					
						
							|  |  |  |         return ESP_ERR_INVALID_ARG; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         *gpio_num = (gpio_num_t)io; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ESP_OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | esp_err_t adc2_pad_get_io_num(adc2_channel_t channel, gpio_num_t *gpio_num) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ADC_CHANNEL_CHECK(ADC_NUM_2, channel); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     int io = ADC_GET_IO_NUM(ADC_NUM_2, channel); | 
					
						
							|  |  |  |     if (io < 0) { | 
					
						
							|  |  |  |         return ESP_ERR_INVALID_ARG; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         *gpio_num = (gpio_num_t)io; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ESP_OK; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-12-03 13:58:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-07 11:21:35 +08:00
										 |  |  | //------------------------------------------------------------RTC Single Read----------------------------------------------//
 | 
					
						
							|  |  |  | #if SOC_ADC_RTC_CTRL_SUPPORTED
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if SOC_ADC_CALIBRATION_V1_SUPPORTED
 | 
					
						
							|  |  |  | static uint32_t get_calibration_offset(adc_ll_num_t adc_n, adc_channel_t chan) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |     adc_atten_t atten = adc_ll_get_atten(adc_n, chan); | 
					
						
							|  |  |  |     extern uint32_t adc_get_calibration_offset(adc_ll_num_t adc_n, adc_channel_t channel, adc_atten_t atten); | 
					
						
							| 
									
										
										
										
											2021-09-07 11:21:35 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return adc_get_calibration_offset(adc_n, chan, atten); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  | #endif  //SOC_ADC_CALIBRATION_V1_SUPPORTED
 | 
					
						
							| 
									
										
										
										
											2021-09-07 11:21:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | esp_err_t adc_set_clk_div(uint8_t clk_div) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     DIGI_CONTROLLER_ENTER(); | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |     adc_ll_digi_set_clk_div(clk_div); | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     DIGI_CONTROLLER_EXIT(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     return ESP_OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-15 20:51:27 +08:00
										 |  |  | static void adc_rtc_chan_init(adc_unit_t adc_unit) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (adc_unit & ADC_UNIT_1) { | 
					
						
							|  |  |  |         /* Workaround: Disable the synchronization operation function of ADC1 and DAC.
 | 
					
						
							|  |  |  |            If enabled(default), ADC RTC controller sampling will cause the DAC channel output voltage. */ | 
					
						
							| 
									
										
										
										
											2021-04-06 21:56:27 +08:00
										 |  |  | #if SOC_DAC_SUPPORTED
 | 
					
						
							| 
									
										
										
										
											2020-04-15 20:51:27 +08:00
										 |  |  |         dac_hal_rtc_sync_by_adc(false); | 
					
						
							| 
									
										
										
										
											2021-04-06 21:56:27 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-04-15 20:51:27 +08:00
										 |  |  |         adc_hal_rtc_output_invert(ADC_NUM_1, SOC_ADC1_DATA_INVERT_DEFAULT); | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |         adc_ll_set_sar_clk_div(ADC_NUM_1, SOC_ADC_SAR_CLK_DIV_DEFAULT(ADC_NUM_1)); | 
					
						
							| 
									
										
										
										
											2020-04-15 20:51:27 +08:00
										 |  |  | #ifdef CONFIG_IDF_TARGET_ESP32
 | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |         adc_ll_hall_disable(); //Disable other peripherals.
 | 
					
						
							|  |  |  |         adc_ll_amp_disable();  //Currently the LNA is not open, close it by default.
 | 
					
						
							| 
									
										
										
										
											2020-04-15 20:51:27 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (adc_unit & ADC_UNIT_2) { | 
					
						
							|  |  |  |         adc_hal_pwdet_set_cct(SOC_ADC_PWDET_CCT_DEFAULT); | 
					
						
							|  |  |  |         adc_hal_rtc_output_invert(ADC_NUM_2, SOC_ADC2_DATA_INVERT_DEFAULT); | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |         adc_ll_set_sar_clk_div(ADC_NUM_2, SOC_ADC_SAR_CLK_DIV_DEFAULT(ADC_NUM_2)); | 
					
						
							| 
									
										
										
										
											2020-04-15 20:51:27 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * This function is NOT an API. | 
					
						
							|  |  |  |  * Now some to-be-deprecated APIs are using this function, so don't make it static for now. | 
					
						
							|  |  |  |  * Will make this static on v5.0 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | esp_err_t adc_common_gpio_init(adc_unit_t adc_unit, adc_channel_t channel) | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     gpio_num_t gpio_num = 0; | 
					
						
							| 
									
										
										
										
											2020-12-10 15:42:12 +08:00
										 |  |  |     //If called with `ADC_UNIT_BOTH (ADC_UNIT_1 | ADC_UNIT_2)`, both if blocks will be run
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     if (adc_unit & ADC_UNIT_1) { | 
					
						
							|  |  |  |         ADC_CHANNEL_CHECK(ADC_NUM_1, channel); | 
					
						
							|  |  |  |         gpio_num = ADC_GET_IO_NUM(ADC_NUM_1, channel); | 
					
						
							| 
									
										
										
										
											2020-12-10 15:42:12 +08:00
										 |  |  |         ADC_CHECK_RET(rtc_gpio_init(gpio_num)); | 
					
						
							|  |  |  |         ADC_CHECK_RET(rtc_gpio_set_direction(gpio_num, RTC_GPIO_MODE_DISABLED)); | 
					
						
							|  |  |  |         ADC_CHECK_RET(rtc_gpio_pulldown_dis(gpio_num)); | 
					
						
							|  |  |  |         ADC_CHECK_RET(rtc_gpio_pullup_dis(gpio_num)); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (adc_unit & ADC_UNIT_2) { | 
					
						
							|  |  |  |         ADC_CHANNEL_CHECK(ADC_NUM_2, channel); | 
					
						
							|  |  |  |         gpio_num = ADC_GET_IO_NUM(ADC_NUM_2, channel); | 
					
						
							| 
									
										
										
										
											2020-12-10 15:42:12 +08:00
										 |  |  |         ADC_CHECK_RET(rtc_gpio_init(gpio_num)); | 
					
						
							|  |  |  |         ADC_CHECK_RET(rtc_gpio_set_direction(gpio_num, RTC_GPIO_MODE_DISABLED)); | 
					
						
							|  |  |  |         ADC_CHECK_RET(rtc_gpio_pulldown_dis(gpio_num)); | 
					
						
							|  |  |  |         ADC_CHECK_RET(rtc_gpio_pullup_dis(gpio_num)); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-12-10 15:42:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     return ESP_OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | esp_err_t adc_set_data_inv(adc_unit_t adc_unit, bool inv_en) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (adc_unit & ADC_UNIT_1) { | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |         SARADC1_ENTER(); | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  |         adc_hal_rtc_output_invert(ADC_NUM_1, inv_en); | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |         SARADC1_EXIT(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (adc_unit & ADC_UNIT_2) { | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |         SARADC2_ENTER(); | 
					
						
							|  |  |  |         adc_hal_rtc_output_invert(ADC_NUM_2, inv_en); | 
					
						
							|  |  |  |         SARADC2_EXIT(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     return ESP_OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  | esp_err_t adc_set_data_width(adc_unit_t adc_unit, adc_bits_width_t width_bit) | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-08 17:38:46 +08:00
										 |  |  | #if CONFIG_IDF_TARGET_ESP32
 | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |     ADC_CHECK(width_bit < ADC_WIDTH_MAX, "WIDTH ERR: ESP32 support 9 ~ 12 bit width", ESP_ERR_INVALID_ARG); | 
					
						
							| 
									
										
										
										
											2020-11-26 19:56:13 +11:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |     ADC_CHECK(width_bit == ADC_WIDTH_MAX - 1, "WIDTH ERR: see `adc_bits_width_t` for supported bit width", ESP_ERR_INVALID_ARG); | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     if (adc_unit & ADC_UNIT_1) { | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |         SARADC1_ENTER(); | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |         adc_hal_rtc_set_output_format(ADC_NUM_1, width_bit); | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |         SARADC1_EXIT(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (adc_unit & ADC_UNIT_2) { | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |         SARADC2_ENTER(); | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |         adc_hal_rtc_set_output_format(ADC_NUM_2, width_bit); | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |         SARADC2_EXIT(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  |     return ESP_OK; | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @brief Reset RTC controller FSM. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @return | 
					
						
							|  |  |  |  *      - ESP_OK Success | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-11-26 19:56:13 +11:00
										 |  |  | #if !CONFIG_IDF_TARGET_ESP32
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | esp_err_t adc_rtc_reset(void) | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     FSM_ENTER(); | 
					
						
							| 
									
										
										
										
											2021-06-08 17:38:46 +08:00
										 |  |  |     adc_ll_rtc_reset(); | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     FSM_EXIT(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     return ESP_OK; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | /*-------------------------------------------------------------------------------------
 | 
					
						
							|  |  |  |  *                      ADC1 | 
					
						
							|  |  |  |  *------------------------------------------------------------------------------------*/ | 
					
						
							|  |  |  | esp_err_t adc1_config_channel_atten(adc1_channel_t channel, adc_atten_t atten) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ADC_CHANNEL_CHECK(ADC_NUM_1, channel); | 
					
						
							|  |  |  |     ADC_CHECK(atten < ADC_ATTEN_MAX, "ADC Atten Err", ESP_ERR_INVALID_ARG); | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |     adc_common_gpio_init(ADC_UNIT_1, channel); | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     SARADC1_ENTER(); | 
					
						
							| 
									
										
										
										
											2020-04-15 20:51:27 +08:00
										 |  |  |     adc_rtc_chan_init(ADC_UNIT_1); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     adc_hal_set_atten(ADC_NUM_1, channel, atten); | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     SARADC1_EXIT(); | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-07 11:21:35 +08:00
										 |  |  | #if SOC_ADC_CALIBRATION_V1_SUPPORTED
 | 
					
						
							| 
									
										
										
										
											2021-01-19 20:00:01 +08:00
										 |  |  |     adc_hal_calibration_init(ADC_NUM_1); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     return ESP_OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | esp_err_t adc1_config_width(adc_bits_width_t width_bit) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-06-08 17:38:46 +08:00
										 |  |  | #if CONFIG_IDF_TARGET_ESP32
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  |     ADC_CHECK(width_bit < ADC_WIDTH_MAX, "WIDTH ERR: ESP32 support 9 ~ 12 bit width", ESP_ERR_INVALID_ARG); | 
					
						
							| 
									
										
										
										
											2021-06-08 17:38:46 +08:00
										 |  |  | #else
 | 
					
						
							|  |  |  |     ADC_CHECK(width_bit == ADC_WIDTH_MAX - 1, "WIDTH ERR: see `adc_bits_width_t` for supported bit width", ESP_ERR_INVALID_ARG); | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     SARADC1_ENTER(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     adc_hal_rtc_set_output_format(ADC_NUM_1, width_bit); | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     SARADC1_EXIT(); | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     return ESP_OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | esp_err_t adc1_dma_mode_acquire(void) | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     /* Use locks to avoid digtal and RTC controller conflicts.
 | 
					
						
							|  |  |  |        for adc1, block until acquire the lock. */ | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     SARADC1_ACQUIRE(); | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  |     ESP_LOGD( ADC_TAG, "dma mode takes adc1 lock." ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     adc_power_acquire(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     SARADC1_ENTER(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     /* switch SARADC into DIG channel */ | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |     adc_ll_set_controller(ADC_NUM_1, ADC_LL_CTRL_DIG); | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     SARADC1_EXIT(); | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     return ESP_OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | esp_err_t adc1_rtc_mode_acquire(void) | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     /* Use locks to avoid digtal and RTC controller conflicts.
 | 
					
						
							|  |  |  |        for adc1, block until acquire the lock. */ | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     SARADC1_ACQUIRE(); | 
					
						
							|  |  |  |     adc_power_acquire(); | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     SARADC1_ENTER(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     /* switch SARADC into RTC channel. */ | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |     adc_ll_set_controller(ADC_NUM_1, ADC_LL_CTRL_RTC); | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     SARADC1_EXIT(); | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     return ESP_OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | esp_err_t adc1_lock_release(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  |     ADC_CHECK((uint32_t *)adc1_dma_lock != NULL, "adc1 lock release called before acquire", ESP_ERR_INVALID_STATE ); | 
					
						
							|  |  |  |     /* Use locks to avoid digtal and RTC controller conflicts. for adc1, block until acquire the lock. */ | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     adc_power_release(); | 
					
						
							|  |  |  |     SARADC1_RELEASE(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     return ESP_OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int adc1_get_raw(adc1_channel_t channel) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  |     int adc_value; | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     ADC_CHANNEL_CHECK(ADC_NUM_1, channel); | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  |     adc1_rtc_mode_acquire(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-07 11:21:35 +08:00
										 |  |  | #if SOC_ADC_CALIBRATION_V1_SUPPORTED
 | 
					
						
							| 
									
										
										
										
											2020-12-08 15:51:27 +08:00
										 |  |  |     // Get calibration value before going into critical section
 | 
					
						
							|  |  |  |     uint32_t cal_val = get_calibration_offset(ADC_NUM_1, channel); | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     adc_hal_set_calibration_param(ADC_NUM_1, cal_val); | 
					
						
							| 
									
										
										
										
											2021-09-07 11:21:35 +08:00
										 |  |  | #endif  //SOC_ADC_CALIBRATION_V1_SUPPORTED
 | 
					
						
							| 
									
										
										
										
											2020-12-08 15:51:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     SARADC1_ENTER(); | 
					
						
							| 
									
										
										
										
											2020-07-29 13:13:51 +08:00
										 |  |  | #ifdef CONFIG_IDF_TARGET_ESP32
 | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |     adc_ll_hall_disable(); //Disable other peripherals.
 | 
					
						
							|  |  |  |     adc_ll_amp_disable();  //Currently the LNA is not open, close it by default.
 | 
					
						
							| 
									
										
										
										
											2021-06-08 17:38:46 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |     adc_ll_set_controller(ADC_NUM_1, ADC_LL_CTRL_RTC);    //Set controller
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  |     adc_hal_convert(ADC_NUM_1, channel, &adc_value);   //Start conversion, For ADC1, the data always valid.
 | 
					
						
							| 
									
										
										
										
											2020-11-26 19:56:13 +11:00
										 |  |  | #if !CONFIG_IDF_TARGET_ESP32
 | 
					
						
							| 
									
										
										
										
											2021-06-08 17:38:46 +08:00
										 |  |  |     adc_ll_rtc_reset();    //Reset FSM of rtc controller
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     SARADC1_EXIT(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     adc1_lock_release(); | 
					
						
							|  |  |  |     return adc_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int adc1_get_voltage(adc1_channel_t channel)    //Deprecated. Use adc1_get_raw() instead
 | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return adc1_get_raw(channel); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-26 19:56:13 +11:00
										 |  |  | #if SOC_ULP_SUPPORTED
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | void adc1_ulp_enable(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-12-03 13:58:24 +08:00
										 |  |  |     adc_power_acquire(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     SARADC1_ENTER(); | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |     adc_ll_set_controller(ADC_NUM_1, ADC_LL_CTRL_ULP); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     /* since most users do not need LNA and HALL with uLP, we disable them here
 | 
					
						
							|  |  |  |        open them in the uLP if needed. */ | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | #ifdef CONFIG_IDF_TARGET_ESP32
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     /* disable other peripherals. */ | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |     adc_ll_hall_disable(); | 
					
						
							|  |  |  |     adc_ll_amp_disable(); | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     SARADC1_EXIT(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-11-26 19:56:13 +11:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*---------------------------------------------------------------
 | 
					
						
							|  |  |  |                     ADC2 | 
					
						
							|  |  |  | ---------------------------------------------------------------*/ | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | /** For ESP32S2 the ADC2 The right to use ADC2 is controlled by the arbiter, and there is no need to set a lock.*/ | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | esp_err_t adc2_wifi_acquire(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* Wi-Fi module will use adc2. Use locks to avoid conflicts. */ | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     SARADC2_ACQUIRE(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     ESP_LOGD( ADC_TAG, "Wi-Fi takes adc2 lock." ); | 
					
						
							|  |  |  |     return ESP_OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | esp_err_t adc2_wifi_release(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     ADC_CHECK(SARADC2_LOCK_CHECK(), "wifi release called before acquire", ESP_ERR_INVALID_STATE ); | 
					
						
							|  |  |  |     SARADC2_RELEASE(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     ESP_LOGD( ADC_TAG, "Wi-Fi returns adc2 lock." ); | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     return ESP_OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | esp_err_t adc2_config_channel_atten(adc2_channel_t channel, adc_atten_t atten) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ADC_CHANNEL_CHECK(ADC_NUM_2, channel); | 
					
						
							|  |  |  |     ADC_CHECK(atten <= ADC_ATTEN_11db, "ADC2 Atten Err", ESP_ERR_INVALID_ARG); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |     adc_common_gpio_init(ADC_UNIT_2, channel); | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ( SARADC2_TRY_ACQUIRE() == -1 ) { | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |         //try the lock, return if failed (wifi using).
 | 
					
						
							|  |  |  |         return ESP_ERR_TIMEOUT; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     //avoid collision with other tasks
 | 
					
						
							|  |  |  |     SARADC2_ENTER(); | 
					
						
							| 
									
										
										
										
											2020-04-15 20:51:27 +08:00
										 |  |  |     adc_rtc_chan_init(ADC_UNIT_2); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     adc_hal_set_atten(ADC_NUM_2, channel, atten); | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     SARADC2_EXIT(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     SARADC2_RELEASE(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-07 11:21:35 +08:00
										 |  |  | #if SOC_ADC_CALIBRATION_V1_SUPPORTED
 | 
					
						
							| 
									
										
										
										
											2021-01-19 20:00:01 +08:00
										 |  |  |     adc_hal_calibration_init(ADC_NUM_2); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     return ESP_OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | static inline void adc2_init(void) | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-07-29 14:10:36 +08:00
										 |  |  | #if CONFIG_IDF_TARGET_ESP32S2
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | #ifdef CONFIG_PM_ENABLE
 | 
					
						
							|  |  |  |     /* Lock APB clock. */ | 
					
						
							|  |  |  |     if (s_adc2_arbiter_lock == NULL) { | 
					
						
							|  |  |  |         esp_pm_lock_create(ESP_PM_APB_FREQ_MAX, 0, "adc2", &s_adc2_arbiter_lock); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif  //CONFIG_PM_ENABLE
 | 
					
						
							|  |  |  | #endif  //CONFIG_IDF_TARGET_ESP32S2
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void adc2_dac_disable( adc2_channel_t channel) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-04-06 21:56:27 +08:00
										 |  |  | #if SOC_DAC_SUPPORTED
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | #ifdef CONFIG_IDF_TARGET_ESP32
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     if ( channel == ADC2_CHANNEL_8 ) { // the same as DAC channel 1
 | 
					
						
							|  |  |  |         dac_output_disable(DAC_CHANNEL_1); | 
					
						
							|  |  |  |     } else if ( channel == ADC2_CHANNEL_9 ) { | 
					
						
							|  |  |  |         dac_output_disable(DAC_CHANNEL_2); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-11-26 19:56:13 +11:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  |     if ( channel == ADC2_CHANNEL_6 ) { // the same as DAC channel 1
 | 
					
						
							|  |  |  |         dac_output_disable(DAC_CHANNEL_1); | 
					
						
							|  |  |  |     } else if ( channel == ADC2_CHANNEL_7 ) { | 
					
						
							|  |  |  |         dac_output_disable(DAC_CHANNEL_2); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-04-06 21:56:27 +08:00
										 |  |  | #endif // SOC_DAC_SUPPORTED
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @note For ESP32S2: | 
					
						
							|  |  |  |  *       The arbiter's working clock is APB_CLK. When the APB_CLK clock drops below 8 MHz, the arbiter must be in shield mode. | 
					
						
							|  |  |  |  *       Or, the RTC controller will fail when get raw data. | 
					
						
							|  |  |  |  *       This issue does not occur on digital controllers (DMA mode), and the hardware guarantees that there will be no errors. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | esp_err_t adc2_get_raw(adc2_channel_t channel, adc_bits_width_t width_bit, int *raw_out) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-02-23 21:40:15 +08:00
										 |  |  |     esp_err_t ret = ESP_OK; | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  |     int adc_value = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ADC_CHECK(raw_out != NULL, "ADC out value err", ESP_ERR_INVALID_ARG); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     ADC_CHECK(channel < ADC2_CHANNEL_MAX, "ADC Channel Err", ESP_ERR_INVALID_ARG); | 
					
						
							| 
									
										
										
										
											2021-06-08 17:38:46 +08:00
										 |  |  | #if CONFIG_IDF_TARGET_ESP32
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  |     ADC_CHECK(width_bit < ADC_WIDTH_MAX, "WIDTH ERR: ESP32 support 9 ~ 12 bit width", ESP_ERR_INVALID_ARG); | 
					
						
							| 
									
										
										
										
											2020-11-26 19:56:13 +11:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2021-06-08 17:38:46 +08:00
										 |  |  |     ADC_CHECK(width_bit == ADC_WIDTH_MAX - 1, "WIDTH ERR: see `adc_bits_width_t` for supported bit width", ESP_ERR_INVALID_ARG); | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-07 11:21:35 +08:00
										 |  |  | #if SOC_ADC_CALIBRATION_V1_SUPPORTED
 | 
					
						
							| 
									
										
										
										
											2020-12-08 15:51:27 +08:00
										 |  |  |     // Get calibration value before going into critical section
 | 
					
						
							|  |  |  |     uint32_t cal_val = get_calibration_offset(ADC_NUM_2, channel); | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     adc_hal_set_calibration_param(ADC_NUM_2, cal_val); | 
					
						
							| 
									
										
										
										
											2021-09-07 11:21:35 +08:00
										 |  |  | #endif  //SOC_ADC_CALIBRATION_V1_SUPPORTED
 | 
					
						
							| 
									
										
										
										
											2020-12-08 15:51:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     if ( SARADC2_TRY_ACQUIRE() == -1 ) { | 
					
						
							|  |  |  |         //try the lock, return if failed (wifi using).
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |         return ESP_ERR_TIMEOUT; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     adc_power_acquire();         //in critical section with whole rtc module
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     //avoid collision with other tasks
 | 
					
						
							|  |  |  |     adc2_init();   // in critical section with whole rtc module. because the PWDET use the same registers, place it here.
 | 
					
						
							|  |  |  |     SARADC2_ENTER(); | 
					
						
							| 
									
										
										
										
											2021-06-28 11:39:30 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if SOC_ADC_ARBITER_SUPPORTED
 | 
					
						
							|  |  |  |     adc_arbiter_t config = ADC_ARBITER_CONFIG_DEFAULT(); | 
					
						
							|  |  |  |     adc_hal_arbiter_config(&config); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | #ifdef CONFIG_ADC_DISABLE_DAC
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  |     adc2_dac_disable(channel);      //disable other peripherals
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     adc_hal_rtc_set_output_format(ADC_NUM_2, width_bit); | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if CONFIG_IDF_TARGET_ESP32
 | 
					
						
							|  |  |  |     adc_ll_set_controller(ADC_NUM_2, ADC_LL_CTRL_RTC);// set controller
 | 
					
						
							| 
									
										
										
										
											2021-06-08 17:38:46 +08:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |     adc_ll_set_controller(ADC_NUM_2, ADC_LL_CTRL_ARB);// set controller
 | 
					
						
							| 
									
										
										
										
											2021-06-08 17:38:46 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-29 14:10:36 +08:00
										 |  |  | #if CONFIG_IDF_TARGET_ESP32S2
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | #ifdef CONFIG_PM_ENABLE
 | 
					
						
							|  |  |  |     if (s_adc2_arbiter_lock) { | 
					
						
							|  |  |  |         esp_pm_lock_acquire(s_adc2_arbiter_lock); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | #endif //CONFIG_PM_ENABLE
 | 
					
						
							|  |  |  | #endif //CONFIG_IDF_TARGET_ESP32
 | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-23 21:40:15 +08:00
										 |  |  |     ret = adc_hal_convert(ADC_NUM_2, channel, &adc_value); | 
					
						
							|  |  |  |     if (ret != ESP_OK) { | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  |         adc_value = -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-08 17:38:46 +08:00
										 |  |  | #if CONFIG_IDF_TARGET_ESP32S2
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  | #ifdef CONFIG_PM_ENABLE
 | 
					
						
							|  |  |  |     /* Release APB clock. */ | 
					
						
							|  |  |  |     if (s_adc2_arbiter_lock) { | 
					
						
							|  |  |  |         esp_pm_lock_release(s_adc2_arbiter_lock); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif //CONFIG_PM_ENABLE
 | 
					
						
							|  |  |  | #endif //CONFIG_IDF_TARGET_ESP32
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     SARADC2_EXIT(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     adc_power_release(); | 
					
						
							|  |  |  |     SARADC2_RELEASE(); | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:19:48 +08:00
										 |  |  |     *raw_out = adc_value; | 
					
						
							| 
									
										
										
										
											2021-02-23 21:40:15 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2019-09-09 20:56:46 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-03 17:38:10 +08:00
										 |  |  | esp_err_t adc2_vref_to_gpio(gpio_num_t gpio) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return adc_vref_to_gpio(ADC_UNIT_2, gpio); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | esp_err_t adc_vref_to_gpio(adc_unit_t adc_unit, gpio_num_t gpio) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef CONFIG_IDF_TARGET_ESP32
 | 
					
						
							| 
									
										
										
										
											2020-12-03 20:08:59 +08:00
										 |  |  |     if (adc_unit & ADC_UNIT_1) { | 
					
						
							|  |  |  |         return ESP_ERR_INVALID_ARG; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-06-03 17:38:10 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     adc2_channel_t ch = ADC2_CHANNEL_MAX; | 
					
						
							|  |  |  |     /* Check if the GPIO supported. */ | 
					
						
							|  |  |  |     for (int i = 0; i < ADC2_CHANNEL_MAX; i++) { | 
					
						
							|  |  |  |         if (gpio == ADC_GET_IO_NUM(ADC_NUM_2, i)) { | 
					
						
							|  |  |  |             ch = i; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-12-03 20:08:59 +08:00
										 |  |  |     if (ch == ADC2_CHANNEL_MAX) { | 
					
						
							|  |  |  |         return ESP_ERR_INVALID_ARG; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-06-03 17:38:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |     adc_power_acquire(); | 
					
						
							| 
									
										
										
										
											2020-06-03 17:38:10 +08:00
										 |  |  |     if (adc_unit & ADC_UNIT_1) { | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |         VREF_ENTER(1); | 
					
						
							| 
									
										
										
										
											2020-06-03 17:38:10 +08:00
										 |  |  |         adc_hal_vref_output(ADC_NUM_1, ch, true); | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |         VREF_EXIT(1); | 
					
						
							| 
									
										
										
										
											2020-06-03 17:38:10 +08:00
										 |  |  |     } else if (adc_unit & ADC_UNIT_2) { | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |         VREF_ENTER(2); | 
					
						
							| 
									
										
										
										
											2020-06-03 17:38:10 +08:00
										 |  |  |         adc_hal_vref_output(ADC_NUM_2, ch, true); | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  |         VREF_EXIT(2); | 
					
						
							| 
									
										
										
										
											2020-06-03 17:38:10 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     //Configure RTC gpio, Only ADC2's channels IO are supported to output reference voltage.
 | 
					
						
							| 
									
										
										
										
											2021-12-15 14:15:32 +08:00
										 |  |  |     adc_common_gpio_init(ADC_UNIT_2, ch); | 
					
						
							| 
									
										
										
										
											2020-06-03 17:38:10 +08:00
										 |  |  |     return ESP_OK; | 
					
						
							| 
									
										
										
										
											2020-07-29 20:46:37 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-02-01 01:12:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-07 11:21:35 +08:00
										 |  |  | #endif //SOC_ADC_RTC_CTRL_SUPPORTED
 |