diff --git a/cnc_ctrl_v1/GCode.cpp b/cnc_ctrl_v1/GCode.cpp index 2cb0e4ca..b32ba25f 100644 --- a/cnc_ctrl_v1/GCode.cpp +++ b/cnc_ctrl_v1/GCode.cpp @@ -660,7 +660,7 @@ int G1(const String& readString, int G0orG1){ } else{ //if this is a rapid move - coordinatedMove(xgoto, ygoto, zgoto, 1000); //move the same as a regular move, but go fast + coordinatedMove(xgoto, ygoto, zgoto, sysSettings.maxFeed); //move the same as a regular move, but go fast } } diff --git a/cnc_ctrl_v1/Settings.cpp b/cnc_ctrl_v1/Settings.cpp index cc9438c7..3b3e79e0 100644 --- a/cnc_ctrl_v1/Settings.cpp +++ b/cnc_ctrl_v1/Settings.cpp @@ -75,7 +75,7 @@ void settingsReset() { sysSettings.originalChainLength = 1650; // int originalChainLength; sysSettings.encoderSteps = 8113.7; // float encoderSteps; sysSettings.distPerRot = 63.5; // float distPerRot; - sysSettings.maxFeed = 1000; // int maxFeed; + sysSettings.maxFeed = 700; // int maxFeed; sysSettings.zAxisAttached = true; // zAxisAttached; sysSettings.spindleAutomate = false; // bool spindleAutomate; sysSettings.maxZRPM = 12.60; // float maxZRPM;