When Z probing, adapt Z to soft limits if Z out of range

pull/1274/head
tommaso-b 2025-03-28 20:57:02 +01:00 zatwierdzone przez GitHub
rodzic a6bb083a68
commit 593074356a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -277,6 +277,9 @@ uint8_t mc_probe_cycle(float *target, plan_line_data_t *pl_data, uint8_t parser_
return(GC_PROBE_FAIL_INIT); // Nothing else to do but bail.
}
// Z Probing simplification : if Z travel exceeds soft limits, adjust Z to max. allowed value as probing stop is anyhow expected
system_do_limit_Z_travel(target);
// Setup and queue probing motion. Auto cycle-start should not start the cycle.
mc_line(target, pl_data);