1 /*
2  * SPDX-FileCopyrightText: 2019-2022 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #pragma once
8 
9 #include "soc/sens_reg.h"
10 #include "soc/sens_struct.h"
11 #include "soc/rtc_io_reg.h"
12 #include "soc/rtc_io_struct.h"
13 #include "soc/rtc.h"
14 #include "soc/soc_caps.h"
15 
16 #ifdef __cplusplus
17 extern "C"
18 {
19 #endif
20 
21 typedef struct {
22     const uint8_t dac_channel_io_num[SOC_DAC_CHAN_NUM];
23 } dac_signal_conn_t;
24 
25 extern const dac_signal_conn_t dac_periph_signal;
26 
27 #ifdef __cplusplus
28 }
29 #endif
30