SDFileSystem/LocalFileSystem等の不具合や機種依存性を少なくしたライブラリ。 MiMic用

Dependents:   HttpClientSamlpe AsyncHttpdSample MbedFileServer TcpSocketClientSamlpe ... more

Fork of NySDFileSystem by Ryo Iizuka

Revision:
10:ae6cec8cecfb
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LocalFileSystem2.h	Tue Jun 24 09:43:28 2014 +0000
@@ -0,0 +1,32 @@
+#pragma once
+
+ 
+#include "mbed.h"
+#include "FATFileSystem.h"
+namespace MiMic
+{
+    /**
+     * This module is LocalFileSystem class which is not stopped on LPCXpresso.
+     * It uses instead of LocalFileSystem. 
+     */
+#ifdef TARGET_LPC1768
+    class LocalFileSystem2 : public LocalFileSystem
+    {
+    private:
+        bool _is_enable;
+    public:
+        LocalFileSystem2(const char* n);
+        virtual FileHandle *open(const char* name, int flags);
+        virtual int remove(const char *filename);
+        virtual DirHandle *opendir(const char *name);
+    };
+#else
+    class LocalFileSystem2 : public FileSystemLike
+    {
+    public:
+        LocalFileSystem2(const char* n):FileSystemLike(n){}
+        virtual FileHandle *open(const char *filename, int flags){return NULL;}
+    };
+#endif
+}
+