Browse Source

Revise motorStep setting;

niuyx 1 month ago
parent
commit
d3d84b1547
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Framework/Common/Simulator/MotorSimulator.cs

+ 2 - 1
Framework/Common/Simulator/MotorSimulator.cs

@@ -117,7 +117,8 @@ namespace MECF.Framework.Common.Simulator
                 {
                     foreach (BeckhoffProviderAxis item in axisProviderCfg.Axes)
                     {
-                        _motorNameMinStepDic[item.Name] = (int)item.ScaleFactor / 30;
+                        double value = item.ScaleFactor / 30;
+                        _motorNameMinStepDic[item.Name] = (int)((value < 100) ? 100 : value);                        
                     }
                 }
             }