Select one of the symbols to view example projects that use it.
 
Outline
#include "sdmmc_cmd.h"
#include "sd_protocol_defs.h"
ff_sdmmc_set_disk_status_check(BYTE, bool);
ff_diskio_register_sdmmc(unsigned char, sdmmc_card_t *);
ff_diskio_get_pdrv_card(const sdmmc_card_t *);
Files
loading (3/5)...
SourceVuESP-IDF Framework and ExamplesFatFSdiskio/diskio_sdmmc.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2017-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include "sdmmc_cmd.h" #include "sd_protocol_defs.h" #ifdef __cplusplus extern "C" { #endif /** * @brief Enable/disable SD card status checking * * @param pdrv drive number * @param enable mock ff_sdmmc_status function (return 0) *//* ... */ void ff_sdmmc_set_disk_status_check(BYTE pdrv, bool enable); /** * Register SD/MMC diskio driver * * @param pdrv drive number * @param card pointer to sdmmc_card_t structure describing a card; card should be initialized before calling f_mount. *//* ... */ void ff_diskio_register_sdmmc(unsigned char pdrv, sdmmc_card_t* card); /** * @brief Get the driver number corresponding to a card * * @param card The card to get its driver * @return Driver number to the card *//* ... */ BYTE ff_diskio_get_pdrv_card(const sdmmc_card_t* card); #ifdef __cplusplus }{...} #endif
Details