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>2019-09-12 14:22:11 +0300
committerDavid Crocker <dcrocker@eschertech.com>2019-09-12 14:22:11 +0300
commitfe99e7696aa90b8c3ae983fba2178145058aec82 (patch)
tree2efd2de089e65a89ee8b2d9c5fb966d92eb7a0e9 /src/Endstops/ZProbe.cpp
parent3d144ad41f8a5a82667c06a8928367dff4ab5e28 (diff)
3.0beta103.0beta10
Z probing bug fixes
Diffstat (limited to 'src/Endstops/ZProbe.cpp')
-rw-r--r--src/Endstops/ZProbe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Endstops/ZProbe.cpp b/src/Endstops/ZProbe.cpp
index 30ed6a4f..f1aa69c0 100644
--- a/src/Endstops/ZProbe.cpp
+++ b/src/Endstops/ZProbe.cpp
@@ -386,7 +386,7 @@ void LocalZProbe::SetProbing(bool isProbing) const
GCodeResult LocalZProbe::AppendPinNames(const StringRef& str) const
{
- if (type != ZProbeType::zMotorStall)
+ if (type != ZProbeType::zMotorStall && type != ZProbeType::none)
{
str.cat(", input pin ");
inputPort.AppendPinName(str);