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-12-14 16:15:01 +0300
committerDavid Crocker <dcrocker@eschertech.com>2019-12-14 16:15:01 +0300
commitdc9a01971422302933e104445752121bf22adeba (patch)
tree0694decaa7be064b64b8e82fe66ad920cbb6a049 /src/Endstops/ZProbeEndstop.h
parent8ab811c4122a4fef46b7a6cd5bc410f484b5f2dd (diff)
Final (?) changes to 3.0RC1
Removed M574 S0 option Fix truncation of M574 report Unconfigured fans report fanPercent -1 instead of -100
Diffstat (limited to 'src/Endstops/ZProbeEndstop.h')
-rw-r--r--src/Endstops/ZProbeEndstop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Endstops/ZProbeEndstop.h b/src/Endstops/ZProbeEndstop.h
index 45dee2bf..b63a614e 100644
--- a/src/Endstops/ZProbeEndstop.h
+++ b/src/Endstops/ZProbeEndstop.h
@@ -18,7 +18,7 @@ public:
ZProbeEndstop(uint8_t axis, EndStopPosition pos);
- EndStopInputType GetEndstopType() const override { return EndStopInputType::zProbeAsEndstop; }
+ EndStopType GetEndstopType() const override { return EndStopType::zProbeAsEndstop; }
EndStopHit Stopped() const override;
bool Prime(const Kinematics& kin, const AxisDriversConfig& axisDrivers) override;
EndstopHitDetails CheckTriggered(bool goingSlow) override;