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:
41:e06e764ff4fd
Parent:
9:a33326afd686
--- a/FileSystems/USBMSD_RAMFS.h	Wed Jun 10 09:54:15 2015 +0000
+++ b/FileSystems/USBMSD_RAMFS.h	Wed Oct 23 06:59:29 2019 +0000
@@ -36,10 +36,10 @@
     * @param product_id Your product_id
     * @param product_release Your preoduct_release
     */
-    USBMSD_RAMFS(RAMFileSystem* ramfs, uint16_t vendor_id = 0x0703, uint16_t product_id = 0x0104, uint16_t product_release = 0x0001);
+    USBMSD_RAMFS(/*RAMFileSystem* ramfs*/HeapBlockDevice* ramfs, uint16_t vendor_id = 0x0703, uint16_t product_id = 0x0104, uint16_t product_release = 0x0001);
 
 protected:
-
+#if 0
     /*
     * read one or more blocks on a storage chip
     *
@@ -86,10 +86,11 @@
     * @returns status: 0: OK, 1: disk not initialized, 2: no medium in the drive, 4: write protected
     */
     virtual int disk_status();
+#endif    
 
 protected:
 
-    RAMFileSystem* ramfs;
+    //RAMFileSystem* ramfs;
 };
 
 #endif