mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
25 lines
392 B
C
25 lines
392 B
C
/*
|
|
* 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"
|
|
|
|
#include "ulp_adc.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Kept for backwards compatibilty */
|
|
#define ulp_riscv_adc_cfg_t ulp_adc_cfg_t
|
|
#define ulp_riscv_adc_init ulp_adc_init
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|