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-12 22:00:33 +0300
committerDavid Crocker <dcrocker@eschertech.com>2019-12-12 22:00:33 +0300
commitebeaf0703a867f05d862ceede912987e368ffe44 (patch)
tree0e64d448a08e847e7f31da7dd5d4b1b44e55a907 /src/Endstops/EndstopDefs.h
parent576607487423909f49f41dd8de6849e8f61ee6b3 (diff)
3.0RC1 provisional
Implemented extruder stall detection for G1 H1 E moves Fixed M119 crash when an axis had no endstop Duet 3 build now loads IAP into RAM
Diffstat (limited to 'src/Endstops/EndstopDefs.h')
-rw-r--r--src/Endstops/EndstopDefs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Endstops/EndstopDefs.h b/src/Endstops/EndstopDefs.h
index b0797961..7ccdc1ef 100644
--- a/src/Endstops/EndstopDefs.h
+++ b/src/Endstops/EndstopDefs.h
@@ -26,7 +26,7 @@ enum class EndstopHitAction : uint8_t
// Struct to return info about what endstop has been triggered and what to do about it
struct EndstopHitDetails
{
- EndstopHitDetails() : action((uint32_t)EndstopHitAction::none), internalUse(0), axis(0), setAxisLow(false), setAxisHigh(false), isZProbe(false)
+ EndstopHitDetails() : action((uint32_t)EndstopHitAction::none), internalUse(0), axis(NO_AXIS), setAxisLow(false), setAxisHigh(false), isZProbe(false)
{
driver.Clear();
}