1 /*
2  * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #include <stdint.h>
7 #include "soc/sdio_slave_periph.h"
8 #include "soc/sdio_slave_pins.h"
9 
10 const sdio_slave_slot_info_t sdio_slave_slot_info[1]  = {
11     {
12         .clk_gpio = SDIO_SLAVE_SLOT0_IOMUX_PIN_NUM_CLK,
13         .cmd_gpio = SDIO_SLAVE_SLOT0_IOMUX_PIN_NUM_CMD,
14         .d0_gpio = SDIO_SLAVE_SLOT0_IOMUX_PIN_NUM_D0,
15         .d1_gpio = SDIO_SLAVE_SLOT0_IOMUX_PIN_NUM_D1,
16         .d2_gpio = SDIO_SLAVE_SLOT0_IOMUX_PIN_NUM_D2,
17         .d3_gpio = SDIO_SLAVE_SLOT0_IOMUX_PIN_NUM_D3,
18         .func = SDIO_SLAVE_SLOT0_FUNC,
19     },
20 };
21