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>2017-08-30 20:24:05 +0300
committerDavid Crocker <dcrocker@eschertech.com>2017-08-30 20:24:05 +0300
commit8dda9ff9fa096a9093d0c85c276c43f140267e0f (patch)
tree3a6f6281272555ee8bbf01dbcd68a1d369a2ce95 /src/GCodes/GCodeQueue.h
parent7df2fe5e9a3387dbe00947dffe375b6443079b94 (diff)
Version 1.19+5
Jerk is no longer applied to the boundaries between travel moves and printing moves On the Duet WiFi, the M122 report includes the network reconnect count The progress bar on PanelDue and the estimated end time based on filament usage were getting slightly ahead of the true values, especially for small gcode files Fixed a bug whereby if a move had a tiny amount of XY movement and a much larger amount of extrusion, an extrusion speed in excess of the extruder speed limit set in M203 might be used. This could also be triggered if a move that was too short to need any steps was followed by a pure extrusion move.
Diffstat (limited to 'src/GCodes/GCodeQueue.h')
-rw-r--r--src/GCodes/GCodeQueue.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/GCodes/GCodeQueue.h b/src/GCodes/GCodeQueue.h
index fb1d8772..60cbf34e 100644
--- a/src/GCodes/GCodeQueue.h
+++ b/src/GCodes/GCodeQueue.h
@@ -23,6 +23,7 @@ class GCodeQueue
bool FillBuffer(GCodeBuffer *gb); // If there is another move to execute at this time, fill a buffer
void PurgeEntries(); // Remove stored codes when a print is being paused
void Clear(); // Clean up all the stored codes
+ bool IsIdle() const; // Return true if there is nothing to do
void Diagnostics(MessageType mtype);