Sfoglia il codice sorgente

Fix bad DELTA probe move (#21781)

Victor Oliveira 4 anni fa
parent
commit
fb2bfe1cef
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      Marlin/src/module/motion.cpp

+ 1
- 1
Marlin/src/module/motion.cpp Vedi File

@@ -426,7 +426,7 @@ void _internal_move_to_destination(const_feedRate_t fr_mm_s/*=0.0f*/
426 426
   #endif
427 427
 
428 428
   if (TERN0(IS_KINEMATIC, is_fast))
429
-    TERN(IS_KINEMATIC, NOOP, prepare_line_to_destination());
429
+    TERN(IS_KINEMATIC, prepare_fast_move_to_destination(), NOOP);
430 430
   else
431 431
     prepare_line_to_destination();
432 432
 

Loading…
Annulla
Salva