2022-02-28 18:12:28 +08:00
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "hal/adc_types.h"
|
|
|
|
|
#include "esp_err.h"
|
|
|
|
|
|
2022-09-02 16:18:14 +08:00
|
|
|
#include "ulp_adc.h"
|
|
|
|
|
|
2022-02-28 18:12:28 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-09-02 16:18:14 +08:00
|
|
|
/* Kept for backwards compatibilty */
|
|
|
|
|
#define ulp_riscv_adc_cfg_t ulp_adc_cfg_t
|
|
|
|
|
#define ulp_riscv_adc_init ulp_adc_init
|
2022-08-01 10:18:42 +08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|