mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-28 19:34:59 +00:00
28 lines
457 B
C
28 lines
457 B
C
/*
|
|
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include "soc/soc_caps.h"
|
|
#include "hal/mspi_ll.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
struct {
|
|
const uint32_t irq; //irq source for interrupt mux
|
|
} instances[MSPI_LL_PERIPH_NUM];
|
|
} mspi_info_t;
|
|
|
|
extern const mspi_info_t mspi_hw_info;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|