![]() |
cueOS
2.4
cueOS - Universal Show Control OS for ARM
|
Header for ff_gen_drv.c module. More...
#include "diskio.h"
#include "ff.h"
#include "stdint.h"
Go to the source code of this file.
Data Structures | |
struct | Diskio_drvTypeDef |
Disk IO Driver structure definition. More... | |
struct | Disk_drvTypeDef |
Global Disk IO Drivers structure definition. More... | |
Functions | |
uint8_t | FATFS_LinkDriver (const Diskio_drvTypeDef *drv, char *path) |
Links a compatible diskio driver and increments the number of active linked drivers. More... | |
uint8_t | FATFS_UnLinkDriver (char *path) |
Unlinks a diskio driver and decrements the number of active linked drivers. More... | |
uint8_t | FATFS_LinkDriverEx (const Diskio_drvTypeDef *drv, char *path, BYTE lun) |
uint8_t | FATFS_UnLinkDriverEx (char *path, BYTE lun) |
uint8_t | FATFS_GetAttachedDriversNbr (void) |
Gets number of linked drivers to the FatFs module. More... | |
Header for ff_gen_drv.c module.
This software component is licensed by ST under Ultimate Liberty license SLA0044, the "License"; You may not use this file except in compliance with the License. You may obtain a copy of the License at: www.st.com/SLA0044
Definition in file ff_gen_drv.h.
uint8_t FATFS_GetAttachedDriversNbr | ( | void | ) |
Gets number of linked drivers to the FatFs module.
None |
Number | of attached drivers. |
Definition at line 116 of file ff_gen_drv.c.
uint8_t FATFS_LinkDriver | ( | const Diskio_drvTypeDef * | drv, |
char * | path | ||
) |
Links a compatible diskio driver and increments the number of active linked drivers.
drv | pointer to the disk IO Driver structure |
path | pointer to the logical drive path |
Returns | 0 in case of success, otherwise 1. |
Definition at line 68 of file ff_gen_drv.c.
uint8_t FATFS_UnLinkDriver | ( | char * | path | ) |
Unlinks a diskio driver and decrements the number of active linked drivers.
path | pointer to the logical drive path |
Returns | 0 in case of success, otherwise 1. |
Definition at line 106 of file ff_gen_drv.c.