Set XYZ to absolute and E to relative

This commit is contained in:
Alex Voinea 2020-01-07 20:42:21 +02:00
parent f8a0d5d773
commit 4422fc29f8
No known key found for this signature in database
GPG key ID: F5034E7CFCF2F973

View file

@ -7370,6 +7370,11 @@ void lcd_print_stop()
custom_message_type = CustomMsg::Status;
planner_abort_hard(); //needs to be done since plan_buffer_line resets waiting_inside_plan_buffer_line_print_aborted to false. Also copies current to destination.
axis_relative_modes[X_AXIS] = false;
axis_relative_modes[Y_AXIS] = false;
axis_relative_modes[Z_AXIS] = false;
axis_relative_modes[E_AXIS] = true;
}
void lcd_sdcard_stop()