f7024cff78
* 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>
14 lines
178 B
C
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 |