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:
Diffstat (limited to 'src/Movement/Move.cpp')
-rw-r--r--src/Movement/Move.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Movement/Move.cpp b/src/Movement/Move.cpp
index c3d74d9f..1e535845 100644
--- a/src/Movement/Move.cpp
+++ b/src/Movement/Move.cpp
@@ -1063,7 +1063,7 @@ void Move::DoDeltaCalibration(size_t numFactors, StringRef& reply)
// Transform the probing points to motor endpoints and store them in a matrix, so that we can do multiple iterations using the same data
FixedMatrix<floatc_t, MaxDeltaCalibrationPoints, DELTA_AXES> probeMotorPositions;
floatc_t corrections[MaxDeltaCalibrationPoints];
- float_t initialSumOfSquares = 0.0;
+ float initialSumOfSquares = 0.0;
for (size_t i = 0; i < numPoints; ++i)
{
corrections[i] = 0.0;