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>2021-03-12 19:26:58 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-03-12 19:26:58 +0300
commit2c74f0e033d7194013d3a3a0818660051f5cf148 (patch)
treea29eff1b9c41a1e84c8a27cc2c9565b4cb6aafe9 /src/Endstops/StallDetectionEndstop.h
parent6052f634c26fffe37b25fade21f138acdecc36f4 (diff)
Rewrote M675 to fix numerous issues
M675 didn't deploy/retract probe or turn off heaters if configured M675 had no error handling for probe aready triggered/not triggered M675 didn't work consistently M675 now accepts parameter K in place of P and requires either K or P Also changed DeployZProbe to default to deployprobe.g only if deployprobe0.g is not found, not for other Z probes. Similarly for retractprobe.g. Refactored code to set axis lengths mafter a G1 H3 move Moved StraightProbeSettings from the Move module (which didn't use them) to GCodes Removed unused goingSlow parameter from endstop CheckTriggered functions
Diffstat (limited to 'src/Endstops/StallDetectionEndstop.h')
-rw-r--r--src/Endstops/StallDetectionEndstop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Endstops/StallDetectionEndstop.h b/src/Endstops/StallDetectionEndstop.h
index 4765ce7c..4bcacf6b 100644
--- a/src/Endstops/StallDetectionEndstop.h
+++ b/src/Endstops/StallDetectionEndstop.h
@@ -25,7 +25,7 @@ public:
EndStopType GetEndstopType() const noexcept override { return (individualMotors) ? EndStopType::motorStallIndividual : EndStopType::motorStallAny; }
bool Stopped() const noexcept override;
bool Prime(const Kinematics& kin, const AxisDriversConfig& axisDrivers) noexcept override;
- EndstopHitDetails CheckTriggered(bool goingSlow) noexcept override;
+ EndstopHitDetails CheckTriggered() noexcept override;
bool Acknowledge(EndstopHitDetails what) noexcept override;
void AppendDetails(const StringRef& str) noexcept override;
void SetDrivers(DriversBitmap extruderDrivers) noexcept; // for setting which local extruder drives are active extruder endstops