From b57260736c2d6cac374bd59b2284b231cda96c03 Mon Sep 17 00:00:00 2001 From: BarbourSmith Date: Fri, 11 May 2018 10:08:21 -0700 Subject: [PATCH] improve wording --- cnc_ctrl_v1/Motion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cnc_ctrl_v1/Motion.cpp b/cnc_ctrl_v1/Motion.cpp index 16186515..13e0b8d9 100644 --- a/cnc_ctrl_v1/Motion.cpp +++ b/cnc_ctrl_v1/Motion.cpp @@ -270,7 +270,7 @@ int arc(const float& X1, const float& Y1, const float& X2, const float& Y2, co // Replace it with a G1 cut to the endpoint String gcodeSubstitution = "G1 X"; gcodeSubstitution = gcodeSubstitution + String(X2 / sys.inchesToMMConversion, 3) + " Y" + String(Y2 / sys.inchesToMMConversion, 3) + " "; - Serial.println("Large arc replaced by straight line to improve accuracy: " + gcodeSubstitution); + Serial.println("Large-radius arc replaced by straight line to improve accuracy: " + gcodeSubstitution); G1(gcodeSubstitution, 1); return 1; }