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/EndstopDefs.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/EndstopDefs.h')
-rw-r--r--src/Endstops/EndstopDefs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Endstops/EndstopDefs.h b/src/Endstops/EndstopDefs.h
index 7ccdc1ef..51dd6c76 100644
--- a/src/Endstops/EndstopDefs.h
+++ b/src/Endstops/EndstopDefs.h
@@ -53,10 +53,10 @@ enum class EndStopPosition : unsigned int
};
// Type of an endstop input - values must tally with the M574 command S parameter
-enum class EndStopInputType : unsigned int
+enum class EndStopType : unsigned int
{
- activeLow = 0,
- activeHigh = 1,
+ unused_wasActiveLow = 0,
+ inputPin = 1,
zProbeAsEndstop = 2,
motorStallAny = 3,
motorStallIndividual = 4,