|
Arduino FatFS
|
File system driver which supports multiple drives: Add the drivers by calling add() then call mount() to mount the drives. More...
#include <MultiIO.h>


Public Member Functions | |
| void | add (IO &io) |
| FRESULT | mount (FatFs &fs) override |
| mount all the added drivers | |
| FRESULT | un_mount (FatFs &fs) override |
| unmount all drivers | |
| DSTATUS | disk_initialize (BYTE pdrv) override |
| DSTATUS | disk_status (BYTE pdrv) override |
| DRESULT | disk_read (BYTE pdrv, BYTE *buff, LBA_t sector, UINT count) override |
| DRESULT | disk_write (BYTE pdrv, const BYTE *buff, LBA_t sector, UINT count) override |
| DRESULT | disk_ioctl (BYTE pdrv, ioctl_cmd_t cmd, void *buff) override |
Public Attributes | |
| FATFS | fatfs |
Protected Attributes | |
| std::vector< IO * > | io_vector |
File system driver which supports multiple drives: Add the drivers by calling add() then call mount() to mount the drives.