Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2019-07-02 00:50:12 +0300
committerDavid Crocker <dcrocker@eschertech.com>2019-07-02 00:50:12 +0300
commitc6e580f7b3fa94e9707a225af50922c8daa8a6cf (patch)
treebe06ac0a62fbc3c45aeb8137e86c6b7baee4fc69 /src/Storage/FileData.h
parente14f84e930073bd33d6ecc2ebdad9c3147ed6e18 (diff)
Consolidation after merge
Reverted some changes to Linux/MessageFormats.h and Linux/BinaryParser.cpp for compatibility with the existing SDF release Added HAS_MASS_STORAGE definition Removed lots of mass storage code when HAS_MASS_STORAGE is false Removed non-RTOS code Moved SPI channel usage definitions into CoreNG Added some new CAN message formats (not used by this project yet)
Diffstat (limited to 'src/Storage/FileData.h')
-rw-r--r--src/Storage/FileData.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Storage/FileData.h b/src/Storage/FileData.h
index 683b4165..d765284a 100644
--- a/src/Storage/FileData.h
+++ b/src/Storage/FileData.h
@@ -10,6 +10,8 @@
#include "FileStore.h"
+#if HAS_MASS_STORAGE
+
class FileGCodeInput;
// Small class to hold an open file and data relating to it.
@@ -126,3 +128,5 @@ private:
};
#endif
+
+#endif