flipperzero-firmware/firmware/targets/f7/fatfs/user_diskio.h
Sergey Gavrilov f7024cff78
SD Driver: reinit sd card on error (#2493)
* SD Driver: reinit sd card on error
* SD Driver: cleanup fatfs bindings
* Storage: optimized glue
* Storage: move fatfs initialization to appropriate subsystems, minor code cleanup
* SD Driver: minor code cleanup

Co-authored-by: あく <alleteam@gmail.com>
2023-03-20 22:09:10 +09:00

14 lines
178 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include "sd_spi_io.h"
#include "fatfs/ff_gen_drv.h"
extern Diskio_drvTypeDef sd_fatfs_driver;
#ifdef __cplusplus
}
#endif