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:
Diffstat (limited to 'src/GCodes/GCodes4.cpp')
-rw-r--r--src/GCodes/GCodes4.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/GCodes/GCodes4.cpp b/src/GCodes/GCodes4.cpp
index b257587d..cc9b7cd7 100644
--- a/src/GCodes/GCodes4.cpp
+++ b/src/GCodes/GCodes4.cpp
@@ -1214,7 +1214,7 @@ void GCodes::RunStateMachine(GCodeBuffer& gb, const StringRef& reply)
if (segmentsLeft == 0)
{
const Tool * const tool = reprap.GetCurrentTool();
- if (tool != nullptr)
+ if (tool != nullptr && tool->DriveCount() != 0)
{
SetMoveBufferDefaults();
reprap.GetMove().GetCurrentUserPosition(moveBuffer.coords, 0, tool);
@@ -1222,7 +1222,7 @@ void GCodes::RunStateMachine(GCodeBuffer& gb, const StringRef& reply)
{
moveBuffer.coords[ExtruderToLogicalDrive(tool->Drive(i))] = retractLength + retractExtra;
}
- moveBuffer.feedRate = unRetractSpeed;
+ moveBuffer.feedRate = unRetractSpeed * tool->DriveCount();
moveBuffer.tool = tool;
moveBuffer.isFirmwareRetraction = true;
moveBuffer.filePos = (&gb == fileGCode) ? gb.GetFilePosition() : noFilePosition;