mirror of
https://github.com/espressif/esp-idf.git
synced 2026-05-30 17:46:32 +03:00
License of soc component is changed from Apache-2.0 to Apache-2.0 OR MIT to be able to use it in esp-stub-lib
22 lines
393 B
C
22 lines
393 B
C
/**
|
|
* SPDX-FileCopyrightText: 2023-2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*/
|
|
#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
|