cueOS  2.4
cueOS - Universal Show Control OS for ARM
ff_gen_drv.h
Go to the documentation of this file.
1
21/* Define to prevent recursive inclusion -------------------------------------*/
22#ifndef __FF_GEN_DRV_H
23#define __FF_GEN_DRV_H
24
25#ifdef __cplusplus
26 extern "C" {
27#endif
28
29/* Includes ------------------------------------------------------------------*/
30#include "diskio.h"
31#include "ff.h"
32#include "stdint.h"
33
34
35/* Exported types ------------------------------------------------------------*/
36
40typedef struct
41{
42 DSTATUS (*disk_initialize) (BYTE);
43 DSTATUS (*disk_status) (BYTE);
44 DRESULT (*disk_read) (BYTE, BYTE*, DWORD, UINT);
45 DRESULT (*disk_write) (BYTE, const BYTE*, DWORD, UINT);
46 DRESULT (*disk_ioctl) (BYTE, BYTE, void*);
48
52typedef struct
53{
54 uint8_t is_initialized[FF_VOLUMES];
55 const Diskio_drvTypeDef *drv[FF_VOLUMES];
56 uint8_t lun[FF_VOLUMES];
57 volatile uint8_t nbr;
58
60
61/* Exported constants --------------------------------------------------------*/
62/* Exported macro ------------------------------------------------------------*/
63/* Exported functions ------------------------------------------------------- */
64uint8_t FATFS_LinkDriver(const Diskio_drvTypeDef *drv, char *path);
65uint8_t FATFS_UnLinkDriver(char *path);
66uint8_t FATFS_LinkDriverEx(const Diskio_drvTypeDef *drv, char *path, BYTE lun);
67uint8_t FATFS_UnLinkDriverEx(char *path, BYTE lun);
68uint8_t FATFS_GetAttachedDriversNbr(void);
69
70#ifdef __cplusplus
71}
72#endif
73
74#endif /* __FF_GEN_DRV_H */
75
76/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
77
uint8_t FATFS_UnLinkDriverEx(char *path, uint8_t lun)
Unlinks a diskio driver and decrements the number of active linked drivers.
Definition: ff_gen_drv.c:80
uint8_t FATFS_LinkDriverEx(const Diskio_drvTypeDef *drv, char *path, uint8_t lun)
Links a compatible diskio driver/lun id and increments the number of active linked drivers.
Definition: ff_gen_drv.c:39
uint8_t FATFS_UnLinkDriver(char *path)
Unlinks a diskio driver and decrements the number of active linked drivers.
Definition: ff_gen_drv.c:106
uint8_t FATFS_GetAttachedDriversNbr(void)
Gets number of linked drivers to the FatFs module.
Definition: ff_gen_drv.c:116
uint8_t FATFS_LinkDriver(const Diskio_drvTypeDef *drv, char *path)
Links a compatible diskio driver and increments the number of active linked drivers.
Definition: ff_gen_drv.c:68
Global Disk IO Drivers structure definition.
Definition: ff_gen_drv.h:53
Disk IO Driver structure definition.
Definition: ff_gen_drv.h:41