mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
33 lines
541 B
C
33 lines
541 B
C
/*
|
|
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include "soc/soc_caps.h"
|
|
#include "soc/interrupts.h"
|
|
#if SOC_ANA_CMPR_SUPPORTED
|
|
#include "soc/ana_cmpr_channel.h"
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if SOC_ANA_CMPR_SUPPORTED
|
|
typedef struct {
|
|
int src_gpio;
|
|
int ext_ref_gpio;
|
|
int intr_src;
|
|
} ana_cmpr_periph_t;
|
|
|
|
extern const ana_cmpr_periph_t ana_cmpr_periph[SOC_ANA_CMPR_NUM];
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|