Skip to content

Commit

Permalink
Merge pull request #529 from madgrizzle/patch-8
Browse files Browse the repository at this point in the history
Add Missing Kinematics.Init()
  • Loading branch information
MaslowCommunityGardenRobot authored Aug 22, 2019
2 parents 81e5f19 + 8c9b2fe commit 22aad90
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cnc_ctrl_v1/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,7 @@ byte settingsStoreGlobalSetting(const byte& parameter,const float& value){
break;
case 37:
sysSettings.chainSagCorrection = value;
kinematics.init();
break;
case 38:
settingsSaveStepstoEEprom();
Expand All @@ -400,9 +401,11 @@ byte settingsStoreGlobalSetting(const byte& parameter,const float& value){
break;
case 40:
sysSettings.leftChainTolerance = value;
kinematics.init();
break;
case 41:
sysSettings.rightChainTolerance = value;
kinematics.init();
break;
case 42:
sysSettings.positionErrorLimit = value;
Expand Down

0 comments on commit 22aad90

Please sign in to comment.