Kevin před 6 roky
rodič
revize
db30650731
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2
    2
      Marlin/src/module/planner.cpp

+ 2
- 2
Marlin/src/module/planner.cpp Zobrazit soubor

@@ -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…
Zrušit
Uložit