mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
22 lines
386 B
C
22 lines
386 B
C
/**
|
|
* SPDX-FileCopyrightText: 2023-2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#pragma once
|
|
|
|
#include "soc/spi_mem_c_struct.h"
|
|
#include "soc/spi1_mem_c_struct.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct spi1_mem_c_dev_s spi_mem_dev_t;
|
|
extern spi_mem_dev_t SPIMEM1;
|
|
extern spi_mem_c_dev_t SPIMEM0;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|