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>2022-04-27 13:00:01 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-04-27 13:00:01 +0300
commit0a1b2ee0cfc7c344a9fa5f27be45fd30b7b9d54b (patch)
treec3175e9c8446cd38b5a9244835f17fa23d061041 /src/Storage
parentc52f889f0e01a856934dbc01e30971dd48e3585d (diff)
Fixes for systems without mass storage
Diffstat (limited to 'src/Storage')
-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 12e22ae9..8cb4d0f3 100644
--- a/src/Storage/FileData.h
+++ b/src/Storage/FileData.h
@@ -10,6 +10,8 @@
#include "FileStore.h"
+#if HAS_MASS_STORAGE || HAS_SBC_INTERFACE || HAS_EMBEDDED_FILES
+
class FileGCodeInput;
// Small class to hold an open file and data relating to it.
@@ -167,3 +169,5 @@ private:
};
#endif
+
+#endif