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.
Fork of SDFileSystem by
Revision 3:c9ea64029ca8, committed 2015-09-09
- Comitter:
- Hagrass
- Date:
- Wed Sep 09 14:34:31 2015 +0000
- Parent:
- 2:11ddf666c892
- Commit message:
- cansat;
Changed in this revision
--- a/FATFileSystem.lib Mon Aug 10 16:34:29 2015 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -http://mbed.org/users/mbed_unsupported/code/fatfilesystem/#333d6e93e58f
--- a/SDFileSystem.cpp Mon Aug 10 16:34:29 2015 +0000
+++ b/SDFileSystem.cpp Wed Sep 09 14:34:31 2015 +0000
@@ -236,7 +236,7 @@
int SDFileSystem::disk_status() { return 0; }
int SDFileSystem::disk_sync() { return 0; }
-int SDFileSystem::disk_sectors() { return _sectors; }
+uint64_t SDFileSystem::disk_sectors() { return _sectors; }
// PRIVATE FUNCTIONS
--- a/SDFileSystem.h Mon Aug 10 16:34:29 2015 +0000
+++ b/SDFileSystem.h Wed Sep 09 14:34:31 2015 +0000
@@ -57,7 +57,7 @@
virtual int disk_read(char *buffer, int block_number);
virtual int disk_status();
virtual int disk_sync();
- virtual int disk_sectors();
+ uint64_t disk_sectors();
protected:
