Merge pull request #4679 from 3d-gussner/MK3_Crash_detect_raise_z

Replace hard coded crash z lift value with Pause Z lift value.
This commit is contained in:
3d-gussner 2024-05-03 08:08:48 +02:00 committed by GitHub
commit abdee5b7f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -613,7 +613,7 @@ bool fans_check_enabled = true;
void crashdet_stop_and_save_print()
{
stop_and_save_print_to_ram(10, -default_retraction); //XY - no change, Z 10mm up, E -1mm retract
stop_and_save_print_to_ram(pause_position[Z_AXIS], -default_retraction); //XY - no change, Pause Z LIFT mm up, E -1mm retract
}
void crashdet_restore_print_and_continue()