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:
authorChristian Hammacher <bmasterc@gmail.com>2021-07-22 18:09:33 +0300
committerChristian Hammacher <bmasterc@gmail.com>2021-07-22 18:09:33 +0300
commit7fae5e4082a7b5b12b3f89c045440708237f23b7 (patch)
treececf4959e14f7cdd788aa1df880fcaacdf6a7edb /src/GCodes/GCodes.h
parent865e5c8b3d99639b3f978a6434bcaebac89b5b68 (diff)
Several bug fixes
Bug fix: Added missing NL after M486 in resurrect.g Bug fix: File exists check in SBC mode was broken Bug fix: M24 could not be used to start a print in SBC mode Bug fix: M26 was only partially working in SBC mode (M26 P was not supported)
Diffstat (limited to 'src/GCodes/GCodes.h')
-rw-r--r--src/GCodes/GCodes.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/GCodes/GCodes.h b/src/GCodes/GCodes.h
index 9f484946..d476eb1c 100644
--- a/src/GCodes/GCodes.h
+++ b/src/GCodes/GCodes.h
@@ -598,6 +598,8 @@ private:
#if HAS_MASS_STORAGE
FileData fileToPrint; // The next file to print
+#endif
+#if HAS_MASS_STORAGE || HAS_LINUX_INTERFACE
FilePosition fileOffsetToPrint; // The offset to print from
#endif