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-02-18 17:10:17 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-02-18 17:10:17 +0300
commitf645c9d4bb9c7bdbd2a8a76ad857cdfe2ac6d70f (patch)
treed18c01accd0aad3d0fc4ff69980d5b7d84a4f855 /src/Endstops/ZProbeEndstop.cpp
parenteb723605365e9d00bf641b92e30029588270de03 (diff)
Do fewer sine/cosine calulations while executing arc moves
Also removed "tool creation:" from M563 error messages, because RRF will prepeant the message with "M563:" anyway
Diffstat (limited to 'src/Endstops/ZProbeEndstop.cpp')
-rw-r--r--src/Endstops/ZProbeEndstop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Endstops/ZProbeEndstop.cpp b/src/Endstops/ZProbeEndstop.cpp
index 3ded0c6a..1771eceb 100644
--- a/src/Endstops/ZProbeEndstop.cpp
+++ b/src/Endstops/ZProbeEndstop.cpp
@@ -13,7 +13,7 @@
#include "Movement/Kinematics/Kinematics.h"
// Z probe endstop
-ZProbeEndstop::ZProbeEndstop(uint8_t axis, EndStopPosition pos) noexcept : Endstop(axis, pos), zProbeNumber(0)
+ZProbeEndstop::ZProbeEndstop(uint8_t p_axis, EndStopPosition pos) noexcept : Endstop(p_axis, pos), zProbeNumber(0)
{
}