/* * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */#pragmaonce#include<stdint.h>//include soc related (generated) definitions#include"soc/soc_caps.h"#include"soc/soc_pins.h"#include"soc/gpio_num.h"#ifSOC_SDMMC_HOST_SUPPORTED#include"soc/sdmmc_reg.h"#include"soc/sdmmc_struct.h"#include"soc/gpio_sig_map.h"/* ... */#endif#ifdef__cplusplusextern"C"{#endif#ifSOC_SDMMC_HOST_SUPPORTED/** * Common SDMMC slot info, doesn't depend on SOC_SDMMC_USE_{IOMUX,GPIO_MATRIX} *//* ... */typedefstruct{uint8_twidth;/*!< Maximum supported slot width (1, 4, 8) */uint8_tcard_detect;/*!< Card detect signal in GPIO Matrix */uint8_twrite_protect;/*!< Write protect signal in GPIO Matrix */uint8_tcard_int;/*!< Card interrupt signal in GPIO Matrix */}{ ... }sdmmc_slot_info_t;/** Width and GPIO matrix signal numbers for auxiliary SD host signals, one structure per slot */externconstsdmmc_slot_info_tsdmmc_slot_info[SOC_SDMMC_NUM_SLOTS];/** * This structure lists pin numbers (if SOC_SDMMC_USE_IOMUX is set) * or GPIO Matrix signal numbers (if SOC_SDMMC_USE_GPIO_MATRIX is set) * for the SD bus signals. Field names match SD bus signal names. *//* ... */typedefunion{struct{gpio_num_tcd;gpio_num_twp;gpio_num_tclk;gpio_num_tcmd;gpio_num_td0;gpio_num_td1;gpio_num_td2;gpio_num_td3;gpio_num_td4;gpio_num_td5;gpio_num_td6;gpio_num_td7;}{ ... };gpio_num_tval[12];// for iteration, num of entries in struct}{ ... }sdmmc_slot_io_info_t;/** GPIO pin numbers of SD bus signals, one structure per slot */externconstsdmmc_slot_io_info_tsdmmc_slot_gpio_num[SOC_SDMMC_NUM_SLOTS];/** GPIO matrix signal numbers of SD bus signals, one structure per slot */externconstsdmmc_slot_io_info_tsdmmc_slot_gpio_sig[SOC_SDMMC_NUM_SLOTS];/* ... */#endif// SOC_SDMMC_HOST_SUPPORTED#ifdef__cplusplus}{...}#endif
Details
Show: from
Types: Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.