Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: FATFileSystem.cpp
- Revision:
- 5:b3b3370574cf
- Parent:
- 4:3ff2606d5713
- Child:
- 8:c4baca9a2c3d
- Child:
- 9:e2ab678eb692
--- a/FATFileSystem.cpp Thu Aug 28 13:15:31 2014 +0100
+++ b/FATFileSystem.cpp Thu Aug 13 10:15:39 2015 +0100
@@ -47,9 +47,10 @@
for(int i=0; i<_VOLUMES; i++) {
if(_ffs[i] == 0) {
_ffs[i] = this;
- _fsid = i;
- debug_if(FFS_DBG, "Mounting [%s] on ffs drive [%d]\n", _name, _fsid);
- f_mount(i, &_fs);
+ _fsid[0] = '0' + i;
+ _fsid[1] = '\0';
+ debug_if(FFS_DBG, "Mounting [%s] on ffs drive [%s]\n", _name, _fsid);
+ f_mount(&_fs, _fsid, 0);
return;
}
}
@@ -60,15 +61,15 @@
for (int i=0; i<_VOLUMES; i++) {
if (_ffs[i] == this) {
_ffs[i] = 0;
- f_mount(i, NULL);
+ f_mount(NULL, _fsid, 0);
}
}
}
FileHandle *FATFileSystem::open(const char* name, int flags) {
- debug_if(FFS_DBG, "open(%s) on filesystem [%s], drv [%d]\n", name, _name, _fsid);
+ debug_if(FFS_DBG, "open(%s) on filesystem [%s], drv [%s]\n", name, _name, _fsid);
char n[64];
- sprintf(n, "%d:/%s", _fsid, name);
+ sprintf(n, "%s:/%s", _fsid, name);
/* POSIX flags -> FatFS open mode */
BYTE openmode;
@@ -141,13 +142,13 @@
}
int FATFileSystem::mount() {
- FRESULT res = f_mount(_fsid, &_fs);
+ FRESULT res = f_mount(&_fs, _fsid, 1);
return res == 0 ? 0 : -1;
}
int FATFileSystem::unmount() {
if (disk_sync())
return -1;
- FRESULT res = f_mount(_fsid, NULL);
+ FRESULT res = f_mount(NULL, _fsid, 0);
return res == 0 ? 0 : -1;
}