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>2022-02-14 16:11:25 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-02-14 16:11:25 +0300
commit252f7739eb448c4a24bfb000a01f72facfe8e019 (patch)
treef7bb28cd314bc826b4214d6aed082c350735f6d0
parent825ae994c240dd20c6be15351ed57f9feda656fb (diff)
Fix for M915 with R2 or R3 parameter
-rw-r--r--src/Platform/Platform.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Platform/Platform.cpp b/src/Platform/Platform.cpp
index a66077dc..88abeb58 100644
--- a/src/Platform/Platform.cpp
+++ b/src/Platform/Platform.cpp
@@ -4392,7 +4392,7 @@ GCodeResult Platform::ConfigureStallDetection(GCodeBuffer& gb, const StringRef&
case 2:
case 3:
logOnStallDrivers &= ~drivers;
- eventOnStallDrivers &= ~drivers;
+ eventOnStallDrivers |= drivers;
break;
}
}