2021-05-23 19:50:04 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2017-03-28 16:00:58 -04:00
|
|
|
|
2020-02-25 09:19:48 -05:00
|
|
|
#pragma once
|
2017-03-28 16:00:58 -04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "esp_err.h"
|
2021-11-06 05:26:37 -04:00
|
|
|
#include "soc/soc_caps.h"
|
2017-03-28 16:00:58 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief For WIFI module to claim the usage of ADC2.
|
|
|
|
*
|
|
|
|
* Other tasks will be forbidden to use ADC2 between ``adc2_wifi_acquire`` and ``adc2_wifi_release``.
|
|
|
|
* The WIFI module may have to wait for a short time for the current conversion (if exist) to finish.
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* - ESP_OK success
|
|
|
|
* - ESP_ERR_TIMEOUT reserved for future use. Currently the function will wait until success.
|
|
|
|
*/
|
2019-07-16 05:33:30 -04:00
|
|
|
esp_err_t adc2_wifi_acquire(void);
|
2017-03-28 16:00:58 -04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief For WIFI module to let other tasks use the ADC2 when WIFI is not work.
|
|
|
|
*
|
|
|
|
* Other tasks will be forbidden to use ADC2 between ``adc2_wifi_acquire`` and ``adc2_wifi_release``.
|
|
|
|
* Call this function to release the occupation of ADC2 by WIFI.
|
|
|
|
*
|
|
|
|
* @return always return ESP_OK.
|
|
|
|
*/
|
2019-07-16 05:33:30 -04:00
|
|
|
esp_err_t adc2_wifi_release(void);
|
2017-03-28 16:00:58 -04:00
|
|
|
|
2021-11-06 05:26:37 -04:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32C3
|
2020-04-01 23:20:38 -04:00
|
|
|
/**
|
|
|
|
* @brief This API help ADC2 calibration constructor be linked.
|
|
|
|
*
|
|
|
|
* @note This is a private function, Don't call `adc2_cal_include` in user code.
|
|
|
|
*/
|
|
|
|
void adc2_cal_include(void);
|
2021-01-03 23:25:24 -05:00
|
|
|
#else
|
|
|
|
/**
|
|
|
|
* @brief There's no calibration involved on this chip.
|
|
|
|
*
|
|
|
|
* @note This is a private function, Don't call `adc2_cal_include` in user code.
|
|
|
|
*/
|
|
|
|
#define adc2_cal_include()
|
|
|
|
#endif //CONFIG_IDF_TARGET_*
|
2020-04-01 23:20:38 -04:00
|
|
|
|
2017-03-28 16:00:58 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|