Files
esp-idf/components/soc/esp32p4/include/soc/spi_mem_struct.h
Jaroslav Burian da18980ff0 change: Modify license of soc component
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
2025-11-28 10:32:05 +01:00

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