cueOS  2.4
cueOS - Universal Show Control OS for ARM
ff_gen_drv.c
Go to the documentation of this file.
1
18/* Includes ------------------------------------------------------------------*/
19#include "ff_gen_drv.h"
20
21/* Private typedef -----------------------------------------------------------*/
22/* Private define ------------------------------------------------------------*/
23/* Private variables ---------------------------------------------------------*/
24Disk_drvTypeDef disk = {{0},{0},{0},0};
25
26/* Private function prototypes -----------------------------------------------*/
27/* Private functions ---------------------------------------------------------*/
28
39uint8_t FATFS_LinkDriverEx(const Diskio_drvTypeDef *drv, char *path, uint8_t lun)
40{
41 uint8_t ret = 1;
42 uint8_t DiskNum = 0;
43
44 if(disk.nbr < FF_VOLUMES)
45 {
46 disk.is_initialized[disk.nbr] = 0;
47 disk.drv[disk.nbr] = drv;
48 disk.lun[disk.nbr] = lun;
49 DiskNum = disk.nbr++;
50 path[0] = DiskNum + '0';
51 path[1] = ':';
52 path[2] = '/';
53 path[3] = 0;
54 ret = 0;
55 }
56
57 return ret;
58}
59
68uint8_t FATFS_LinkDriver(const Diskio_drvTypeDef *drv, char *path)
69{
70 return FATFS_LinkDriverEx(drv, path, 0);
71}
72
80uint8_t FATFS_UnLinkDriverEx(char *path, uint8_t lun)
81{
82 uint8_t DiskNum = 0;
83 uint8_t ret = 1;
84
85 if(disk.nbr >= 1)
86 {
87 DiskNum = path[0] - '0';
88 if(disk.drv[DiskNum] != 0)
89 {
90 disk.drv[DiskNum] = 0;
91 disk.lun[DiskNum] = 0;
92 disk.nbr--;
93 ret = 0;
94 }
95 }
96
97 return ret;
98}
99
106uint8_t FATFS_UnLinkDriver(char *path)
107{
108 return FATFS_UnLinkDriverEx(path, 0);
109}
110
117{
118 return disk.nbr;
119}
120
121/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
122
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_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_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
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
Header for ff_gen_drv.c module.
Global Disk IO Drivers structure definition.
Definition: ff_gen_drv.h:53
Disk IO Driver structure definition.
Definition: ff_gen_drv.h:41