Kevin пре 6 година
родитељ
комит
db30650731
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2
    2
      Marlin/src/module/planner.cpp

+ 2
- 2
Marlin/src/module/planner.cpp Прегледај датотеку

@@ -2546,11 +2546,11 @@ void Planner::_set_position_mm(const float &a, const float &b, const float &c, c
2546 2546
   #endif
2547 2547
   position[A_AXIS] = LROUND(a * axis_steps_per_mm[A_AXIS]);
2548 2548
   position[B_AXIS] = LROUND(b * axis_steps_per_mm[B_AXIS]);
2549
-  position[C_AXIS] = LROUND(axis_steps_per_mm[C_AXIS] * (c +
2549
+  position[C_AXIS] = LROUND(axis_steps_per_mm[C_AXIS] * (c +(
2550 2550
     #if !IS_KINEMATIC && ENABLED(AUTO_BED_LEVELING_UBL)
2551 2551
       leveling_active ? ubl.get_z_correction(a, b) :
2552 2552
     #endif
2553
-    0
2553
+    0)
2554 2554
   ));
2555 2555
   position[E_AXIS] = LROUND(e * axis_steps_per_mm[_EINDEX]);
2556 2556
   #if HAS_POSITION_FLOAT

Loading…
Откажи
Сачувај