1 /*
2  * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #pragma once
8 
9 #include <stdint.h>
10 #include "soc/soc_caps.h"
11 #include "soc/periph_defs.h"
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 typedef struct {
18     const periph_module_t module;  // peripheral module
19     const int irq_id;              // interrupt source ID
20 } ieee802154_conn_t;
21 
22 extern const ieee802154_conn_t ieee802154_periph;
23 
24 #ifdef __cplusplus
25 }
26 #endif
27