From 65602895a59f9e9c79ca65342ee3b843ba37183f Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Fri, 27 Jun 2014 06:10:18 +0200 Subject: FatFS complete implementation --- src/gfile/inc_chibiosfs.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/gfile/inc_chibiosfs.c') diff --git a/src/gfile/inc_chibiosfs.c b/src/gfile/inc_chibiosfs.c index 87b8c110..92664288 100644 --- a/src/gfile/inc_chibiosfs.c +++ b/src/gfile/inc_chibiosfs.c @@ -27,6 +27,7 @@ static const GFILEVMT FsCHIBIOSVMT = { 0, 0, 0, 0, 0, ChibiOSBFSClose, ChibiOSBFSRead, ChibiOSBFSWrite, ChibiOSBFSSetpos, ChibiOSBFSGetsize, ChibiOSBFSEof, + 0, 0 }; static void ChibiOSBFSClose(GFILE *f) { -- cgit v1.2.3 From 5c13e08e76ae1d75240e1e8e46d1e9c3a8ba50cd Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Sun, 29 Jun 2014 16:15:46 +0200 Subject: added gfileSync() and autosync feature --- src/gfile/inc_chibiosfs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/gfile/inc_chibiosfs.c') diff --git a/src/gfile/inc_chibiosfs.c b/src/gfile/inc_chibiosfs.c index 92664288..8d321b33 100644 --- a/src/gfile/inc_chibiosfs.c +++ b/src/gfile/inc_chibiosfs.c @@ -27,7 +27,8 @@ static const GFILEVMT FsCHIBIOSVMT = { 0, 0, 0, 0, 0, ChibiOSBFSClose, ChibiOSBFSRead, ChibiOSBFSWrite, ChibiOSBFSSetpos, ChibiOSBFSGetsize, ChibiOSBFSEof, - 0, 0 + 0, 0, + 0 }; static void ChibiOSBFSClose(GFILE *f) { -- cgit v1.2.3