A board support package for the LPC4088 Display Module.

Dependencies:   DM_HttpServer DM_USBHost

Dependents:   lpc4088_displaymodule_emwin lpc4088_displaymodule_demo_sphere sampleGUI sampleEmptyGUI ... more

Fork of DMSupport by EmbeddedArtists AB

Revision:
42:bbfe299d4a0c
Parent:
9:a33326afd686
--- a/FileSystems/QSPIFileSystem.h	Wed Oct 23 06:59:29 2019 +0000
+++ b/FileSystems/QSPIFileSystem.h	Mon Nov 04 14:32:50 2019 +0000
@@ -118,10 +118,12 @@
      */
     QSPIFileSystem(const char* name);
 
-    virtual FileHandle *open(const char *filename, int flags);
+    virtual int open(FileHandle **file, const char *filename, int flags);
+    virtual int open(DirHandle **dir, const char *path);
+
     virtual int remove(const char *filename);
     virtual int rename(const char *oldname, const char *newname);
-    virtual DirHandle *opendir(const char *name);
+
     virtual int mkdir(const char *name, mode_t mode);
 
     /** Creates a new file system on the QSPI flash.