mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
27 lines
480 B
C
27 lines
480 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/periph_defs.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
const periph_module_t module; // peripheral module
|
|
const int irq_id; // interrupt source ID
|
|
} ieee802154_conn_t;
|
|
|
|
extern const ieee802154_conn_t ieee802154_periph;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|