Browse Source

Merge pull request #5037 from esenapaj/Fix-for-the-commit-dc2cb84

Fix for the commit dc2cb84 (Revert acceleration limiting to avoid overflow)
Roxy-3D 7 years ago
parent
commit
8ddd039e68
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/planner.cpp

+ 2
- 2
Marlin/planner.cpp View File

1021
   }
1021
   }
1022
   else {
1022
   else {
1023
     #define LIMIT_ACCEL(AXIS) do{ \
1023
     #define LIMIT_ACCEL(AXIS) do{ \
1024
-      if (max_acceleration_steps_per_s2[AXIS] < (accel * block->steps[AXIS]) / block->step_event_count)
1025
-        accel = (max_acceleration_steps_per_s2[AXIS] * block->step_event_count) / block->steps[AXIS];
1024
+      if (max_acceleration_steps_per_s2[AXIS] < (accel * block->steps[AXIS]) / block->step_event_count) \
1025
+        accel = (max_acceleration_steps_per_s2[AXIS] * block->step_event_count) / block->steps[AXIS]; \
1026
     }while(0)
1026
     }while(0)
1027
 
1027
 
1028
     // Start with print or travel acceleration
1028
     // Start with print or travel acceleration

Loading…
Cancel
Save