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>2021-03-10 12:49:28 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-03-10 12:49:28 +0300
commit08c611c79cb08510c8b8c20eba72a1928f8bd577 (patch)
treec72fa628f26fef032a7bd77fa8a36ab4d8564388 /src/GCodes
parent8b89aab7455a870574fed653738af5566e82beb3 (diff)
Implemented Manuel's M109 fix, changed version to 3.3beta2
Diffstat (limited to 'src/GCodes')
-rw-r--r--src/GCodes/GCodes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GCodes/GCodes.cpp b/src/GCodes/GCodes.cpp
index 67e5b4e6..5ed70116 100644
--- a/src/GCodes/GCodes.cpp
+++ b/src/GCodes/GCodes.cpp
@@ -542,7 +542,7 @@ bool GCodes::SpinGCodeBuffer(GCodeBuffer& gb) noexcept
result = true; // assume we did something useful (not necessarily true, e.g. could be waiting for movement to stop)
}
- if (gb.IsExecuting())
+ if (gb.IsExecuting() || (isWaiting && !cancelWait))
{
CheckReportDue(gb, reply.GetRef());
}