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>2020-02-29 19:09:44 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-02-29 19:09:44 +0300
commit6e2e7164b031c14bf05869bf24a5a41e466d474a (patch)
tree058a8aa1e92924bc6d4f2a36192159798d2beb14 /src/Endstops/SwitchEndstop.cpp
parent894b670d9a0813cc4c7866645b82f94674018c0e (diff)
Still 3.01-RC3 provisional
Got remote BLTouch working Bug fix: when endstops were already triggered, homing moved could hang Bug fix: external SD card didn't work on Duet Maestro
Diffstat (limited to 'src/Endstops/SwitchEndstop.cpp')
-rw-r--r--src/Endstops/SwitchEndstop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Endstops/SwitchEndstop.cpp b/src/Endstops/SwitchEndstop.cpp
index fa4a903a..43f58b6d 100644
--- a/src/Endstops/SwitchEndstop.cpp
+++ b/src/Endstops/SwitchEndstop.cpp
@@ -145,7 +145,7 @@ bool SwitchEndstop::Prime(const Kinematics& kin, const AxisDriversConfig& axisDr
{
RemoteInputHandle h(RemoteInputHandle::typeEndstop, GetAxis(), i);
String<StringLength100> reply;
- if (CanInterface::EnableHandle(boardNumbers[i], h, states[i], reply.GetRef()) != GCodeResult::ok)
+ if (CanInterface::EnableHandle(boardNumbers[i], h, true, states[i], reply.GetRef()) != GCodeResult::ok)
{
reply.cat('\n');
reprap.GetPlatform().Message(ErrorMessage, reply.c_str());