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>2019-06-25 12:54:39 +0300
committerChristian Hammacher <bmasterc@gmail.com>2019-06-25 12:54:39 +0300
commit5b7f021cba21231c2099d268442cf0faea66e34c (patch)
tree4565159c0e520c73cbb1dbffdcfc266292b1aa76 /src/GCodes/GCodeQueue.cpp
parent3825c7f2890cb07856925e3d7d489c36f1fee13c (diff)
parentd8bf587c5fa3c6514bc4f3a3c17b4b5beb4e6110 (diff)
Merge remote-tracking branch 'origin/v3-dev' into v3-chrishamm
Diffstat (limited to 'src/GCodes/GCodeQueue.cpp')
-rw-r--r--src/GCodes/GCodeQueue.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/GCodes/GCodeQueue.cpp b/src/GCodes/GCodeQueue.cpp
index ac087d28..31e30ec7 100644
--- a/src/GCodes/GCodeQueue.cpp
+++ b/src/GCodes/GCodeQueue.cpp
@@ -9,6 +9,7 @@
#include "RepRap.h"
#include "GCodes.h"
+#include "GCodeBuffer/GCodeBuffer.h"
#include "Movement/Move.h"
// GCodeQueue class
@@ -142,6 +143,17 @@ bool GCodeQueue::FillBuffer(GCodeBuffer *gb)
return true;
}
+// These inherited virtual functions need to be defined but are not called
+void GCodeQueue::Reset()
+{
+ Clear();
+}
+
+size_t GCodeQueue::BytesCached() const
+{
+ return 0;
+}
+
// Return true if there is nothing to do
bool GCodeQueue::IsIdle() const
{