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-11-15 23:22:20 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-11-15 23:22:20 +0300
commitd49e75586d2bb09383e6bbc8a22178cfd9f859a2 (patch)
tree382c93b1d93bf76140430e156e47ea96b2ad9298 /src/Endstops
parente84ac30f6241ea85455b702eede62592e66f81dc (diff)
Various changes for ATE
Added constructors for DriverId Added support for ReadInputs request and response Removed unused DDA parameter from CanMotion commands
Diffstat (limited to 'src/Endstops')
-rw-r--r--src/Endstops/EndstopDefs.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Endstops/EndstopDefs.h b/src/Endstops/EndstopDefs.h
index 7744f3ad..948bd957 100644
--- a/src/Endstops/EndstopDefs.h
+++ b/src/Endstops/EndstopDefs.h
@@ -30,7 +30,6 @@ struct EndstopHitDetails
{
EndstopHitDetails() noexcept : action((uint32_t)EndstopHitAction::none), internalUse(0), axis(NO_AXIS), setAxisLow(false), setAxisHigh(false), isZProbe(false)
{
- driver.Clear();
}
void SetAction(EndstopHitAction a) noexcept { action = (uint32_t)a; }