feat(sdmmc): sdmmc full ll layer

This commit is contained in:
Armando
2024-08-29 16:06:47 +08:00
parent ec3029ebb3
commit a1da4f8a01
8 changed files with 1038 additions and 140 deletions
+26
View File
@@ -0,0 +1,26 @@
/*
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include "soc/soc_caps.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief SD bus width
*/
typedef enum {
SD_BUS_WIDTH_1_BIT, ///< 1 bit
SD_BUS_WIDTH_4_BIT, ///< 4 bit
SD_BUS_WIDTH_8_BIT, ///< 8 bit
} sd_bus_width_t;
#ifdef __cplusplus
}
#endif