STM32 Bootloader
Customizable Bootloader for STM32 microcontrollers
sd_fatfs.h
Go to the documentation of this file.
1 
16 #ifndef SD_FATFS_H
17 #define SD_FATFS_H
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
30 /* Includes ------------------------------------------------------------------*/
31 #include "ff.h"
32 
33 #include <stdbool.h>
34 
35 /* Functions -----------------------------------------------------------------*/
42 bool SdCardMount(void);
43 
48 void SdCardUnMount(void);
49 
55 #ifdef __cplusplus
56 }
57 #endif
58 
59 #endif
bool SdCardMount(void)
Mount the FatFs file system on the SD card by linking the disk I/O driver and mounting the default lo...
Definition: sd_fatfs.c:36
void SdCardUnMount(void)
Unmount the FatFs file system from the SD card and unlink the disk I/O driver.
Definition: sd_fatfs.c:80