mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-05 12:51:31 +00:00
22 lines
410 B
C
22 lines
410 B
C
/*
|
|
* SPDX-FileCopyrightText: 2017-2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef _SOC_INTERRUPT_STRUCT_H_
|
|
#define _SOC_INTERRUPT_STRUCT_H_
|
|
|
|
#include <stdint.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef volatile struct interrupt_dev_s {
|
|
} interrupt_dev_t;
|
|
extern interrupt_dev_t INTERRUPT;
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /*_SOC_INTERRUPT_STRUCT_H_ */
|