Skip to content

Commit

Permalink
Merge pull request #409 from MaslowCNC/lower-the-max-feedrate-
Browse files Browse the repository at this point in the history
Lower the max feedrate
  • Loading branch information
BarbourSmith authored Mar 6, 2018
2 parents b32b5fe + 2d699bc commit 3d7763a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cnc_ctrl_v1/GCode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}

Expand Down
2 changes: 1 addition & 1 deletion cnc_ctrl_v1/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3d7763a

Please sign in to comment.