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>2017-11-03 16:36:17 +0300
committerDavid Crocker <dcrocker@eschertech.com>2017-11-03 16:36:17 +0300
commit9330b5f0c95fb46cc14d6167ac341b77f79503ee (patch)
treee2e0076d57b88c6f6849f66f20a86764ff39cc08 /src/RepRap.cpp
parent1f15e46454ec2ee0d0db6e0661fff09b85a821ae (diff)
Version 1.20beta5
Implemented motor load monitoring and sensorless homing Various bug fixes and other changes, see whatsnew file
Diffstat (limited to 'src/RepRap.cpp')
-rw-r--r--src/RepRap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/RepRap.cpp b/src/RepRap.cpp
index 9ae86b5f..b77c7d70 100644
--- a/src/RepRap.cpp
+++ b/src/RepRap.cpp
@@ -1775,7 +1775,7 @@ bool RepRap::WriteToolParameters(FileStore *f) const
{
if (IsBitSet(axesProbed, axis))
{
- scratchString.catf(" %c%.2f", GCodes::axisLetters[axis], (double)(t->GetOffset(axis)));
+ scratchString.catf(" %c%.2f", gCodes->GetAxisLetters()[axis], (double)(t->GetOffset(axis)));
}
}
scratchString.cat('\n');