2021-05-23 20:02:15 -04:00
|
|
|
/*
|
2022-01-02 03:21:47 -05:00
|
|
|
* SPDX-FileCopyrightText: 2016-2022 Espressif Systems (Shanghai) CO LTD
|
2021-05-23 20:02:15 -04:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-12-22 23:29:57 -05:00
|
|
|
|
|
|
|
/* This file is used to get `adc2_init_code_calibration` executed before the APP when the ADC2 is used by Wi-Fi or other drivers.
|
|
|
|
The linker will link constructor (adc2_init_code_calibration) only when any sections inside the same file (adc2_cal_include) is used.
|
|
|
|
Don't put any other code into this file. */
|
|
|
|
|
2022-07-15 00:52:44 -04:00
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "hal/adc_types.h"
|
|
|
|
#include "hal/adc_hal_common.h"
|
2022-01-02 03:21:47 -05:00
|
|
|
#include "esp_private/adc2_wifi.h"
|
2022-07-15 00:52:44 -04:00
|
|
|
#include "esp_private/adc_private.h"
|
|
|
|
|
|
|
|
extern portMUX_TYPE rtc_spinlock;
|
2020-12-22 23:29:57 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Set initial code to ADC2 after calibration. ADC2 RTC and ADC2 PWDET controller share the initial code.
|
|
|
|
* This API be called in before `app_main()`.
|
|
|
|
*/
|
|
|
|
static __attribute__((constructor)) void adc2_init_code_calibration(void)
|
|
|
|
{
|
2022-07-15 00:52:44 -04:00
|
|
|
adc_hal_calibration_init(ADC_UNIT_2);
|
|
|
|
adc_calc_hw_calibration_code(ADC_UNIT_2, ADC_ATTEN_DB_11);
|
|
|
|
portENTER_CRITICAL(&rtc_spinlock);
|
|
|
|
adc_set_hw_calibration_code(ADC_UNIT_2, ADC_ATTEN_DB_11);
|
|
|
|
portEXIT_CRITICAL(&rtc_spinlock);
|
2020-12-22 23:29:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Don't call `adc2_cal_include` in user code. */
|
|
|
|
void adc2_cal_include(void)
|
|
|
|
{
|
|
|
|
/* When this empty function is called, the `adc2_init_code_calibration` constructor will be linked and executed before the app.*/
|
|
|
|
}
|