adc2_init_cal.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. // Copyright 2016-2018 Espressif Systems (Shanghai) PTE LTD
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. /* 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.
  15. The linker will link constructor (adc2_init_code_calibration) only when any sections inside the same file (adc2_cal_include) is used.
  16. Don't put any other code into this file. */
  17. #include "adc2_wifi_private.h"
  18. #include "hal/adc_hal.h"
  19. /**
  20. * @brief Set initial code to ADC2 after calibration. ADC2 RTC and ADC2 PWDET controller share the initial code.
  21. * This API be called in before `app_main()`.
  22. */
  23. static __attribute__((constructor)) void adc2_init_code_calibration(void)
  24. {
  25. adc_hal_set_calibration_param(ADC_NUM_2, adc_hal_calibration(ADC_NUM_2, 0, ADC_ATTEN_DB_11, true, false));
  26. }
  27. /** Don't call `adc2_cal_include` in user code. */
  28. void adc2_cal_include(void)
  29. {
  30. /* When this empty function is called, the `adc2_init_code_calibration` constructor will be linked and executed before the app.*/
  31. }