mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
28 lines
427 B
C
28 lines
427 B
C
/*
|
|
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "soc/periph_defs.h"
|
|
#include "hal/mspi_periph.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
const mspi_info_t mspi_hw_info = {
|
|
.instances = {
|
|
[0] = {
|
|
.irq = ETS_MSPI_INTR_SOURCE,
|
|
},
|
|
[1] = {
|
|
.irq = -1,
|
|
},
|
|
}
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|