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.cpp
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.cpp')
-rw-r--r--src/Endstops/StallDetectionEndstop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Endstops/StallDetectionEndstop.cpp b/src/Endstops/StallDetectionEndstop.cpp
index 194aa42b..65be4b45 100644
--- a/src/Endstops/StallDetectionEndstop.cpp
+++ b/src/Endstops/StallDetectionEndstop.cpp
@@ -46,7 +46,7 @@ bool StallDetectionEndstop::Prime(const Kinematics& kin, const AxisDriversConfig
// Check whether the endstop is triggered and return the action that should be performed. Called from the step ISR.
// Note, the result will not necessarily be acted on because there may be a higher priority endstop!
-EndstopHitDetails StallDetectionEndstop::CheckTriggered(bool goingSlow) noexcept
+EndstopHitDetails StallDetectionEndstop::CheckTriggered() noexcept
{
EndstopHitDetails rslt; // initialised by default constructor
const DriversBitmap relevantStalledDrivers = GetStalledDrivers(driversMonitored);