Skip to content

Commit

Permalink
Improved previous change
Browse files Browse the repository at this point in the history
  • Loading branch information
dc42 committed Aug 11, 2024
1 parent 601445b commit cb29d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Endstops/ZProbe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ GCodeResult ZProbe::ReportScanningCoefficients(const StringRef& reply) noexcept
{
if (isCalibrated)
{
reply.printf("Scanning probe coefficients: offset %.3fmm, A=%.3e B=%.3e C=%.3e", (double)scanCoefficients[0], (double)scanCoefficients[1], (double)scanCoefficients[2], (double)scanCoefficients[3]);
reply.printf("Scanning probe offset: %.3fmm, A: %.3e, B: %.3e, C: %.3e", (double)scanCoefficients[0], (double)scanCoefficients[1], (double)scanCoefficients[2], (double)scanCoefficients[3]);
return GCodeResult::ok;
}

Expand Down

0 comments on commit cb29d52

Please sign in to comment.