Advanced pause fixes (#7518)

* Disallow filament change while paused

* Use kinematic movemements in pause_print and resume_print
master
Thomas Moore 7 years ago committed by Roxy-3D
parent ab2ac1af71
commit 257b693ab0

@ -6192,32 +6192,25 @@ inline void gcode_M17() {
lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INIT); lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INIT);
#endif #endif
} }
stepper.synchronize();
// Save current position // Save current position
stepper.synchronize();
COPY(resume_position, current_position); COPY(resume_position, current_position);
set_destination_to_current();
if (retract) { if (retract) {
// Initial retract before move to filament change position // Initial retract before move to filament change position
set_destination_to_current();
destination[E_AXIS] += retract; destination[E_AXIS] += retract;
RUNPLAN(PAUSE_PARK_RETRACT_FEEDRATE); RUNPLAN(PAUSE_PARK_RETRACT_FEEDRATE);
stepper.synchronize();
} }
// Lift Z axis // Lift Z axis
if (z_lift > 0) { if (z_lift > 0)
destination[Z_AXIS] += z_lift; do_blocking_move_to_z(current_position[Z_AXIS] + z_lift, PAUSE_PARK_Z_FEEDRATE);
NOMORE(destination[Z_AXIS], Z_MAX_POS);
RUNPLAN(PAUSE_PARK_Z_FEEDRATE);
}
// Move XY axes to filament exchange position // Move XY axes to filament exchange position
destination[X_AXIS] = x_pos; do_blocking_move_to_xy(x_pos, y_pos, PAUSE_PARK_XY_FEEDRATE);
destination[Y_AXIS] = y_pos;
clamp_to_software_endstops(destination);
RUNPLAN(PAUSE_PARK_XY_FEEDRATE);
stepper.synchronize();
if (unload_length != 0) { if (unload_length != 0) {
if (show_lcd) { if (show_lcd) {
@ -6228,6 +6221,7 @@ inline void gcode_M17() {
} }
// Unload filament // Unload filament
set_destination_to_current();
destination[E_AXIS] += unload_length; destination[E_AXIS] += unload_length;
RUNPLAN(FILAMENT_CHANGE_UNLOAD_FEEDRATE); RUNPLAN(FILAMENT_CHANGE_UNLOAD_FEEDRATE);
stepper.synchronize(); stepper.synchronize();
@ -6355,7 +6349,6 @@ inline void gcode_M17() {
// Load filament // Load filament
destination[E_AXIS] += load_length; destination[E_AXIS] += load_length;
RUNPLAN(FILAMENT_CHANGE_LOAD_FEEDRATE); RUNPLAN(FILAMENT_CHANGE_LOAD_FEEDRATE);
stepper.synchronize(); stepper.synchronize();
} }
@ -6398,18 +6391,9 @@ inline void gcode_M17() {
destination[E_AXIS] = current_position[E_AXIS] = resume_position[E_AXIS]; destination[E_AXIS] = current_position[E_AXIS] = resume_position[E_AXIS];
planner.set_e_position_mm(current_position[E_AXIS]); planner.set_e_position_mm(current_position[E_AXIS]);
#if IS_KINEMATIC // Move XY to starting position, then Z
// Move XYZ to starting position do_blocking_move_to_xy(resume_position[X_AXIS], resume_position[Y_AXIS], PAUSE_PARK_XY_FEEDRATE);
planner.buffer_line_kinematic(resume_position, PAUSE_PARK_XY_FEEDRATE, active_extruder); do_blocking_move_to_z(resume_position[Z_AXIS], PAUSE_PARK_Z_FEEDRATE);
#else
// Move XY to starting position, then Z
destination[X_AXIS] = resume_position[X_AXIS];
destination[Y_AXIS] = resume_position[Y_AXIS];
RUNPLAN(PAUSE_PARK_XY_FEEDRATE);
destination[Z_AXIS] = resume_position[Z_AXIS];
RUNPLAN(PAUSE_PARK_Z_FEEDRATE);
#endif
stepper.synchronize();
#if ENABLED(FILAMENT_RUNOUT_SENSOR) #if ENABLED(FILAMENT_RUNOUT_SENSOR)
filament_ran_out = false; filament_ran_out = false;
@ -8292,14 +8276,14 @@ inline void gcode_M121() { endstops.enable_globally(false); }
// Initial retract before move to filament change position // Initial retract before move to filament change position
const float retract = parser.seen('L') ? parser.value_axis_units(E_AXIS) : 0 const float retract = parser.seen('L') ? parser.value_axis_units(E_AXIS) : 0
#if defined(PAUSE_PARK_RETRACT_LENGTH) && PAUSE_PARK_RETRACT_LENGTH > 0 #ifdef PAUSE_PARK_RETRACT_LENGTH
- (PAUSE_PARK_RETRACT_LENGTH) - (PAUSE_PARK_RETRACT_LENGTH)
#endif #endif
; ;
// Lift Z axis // Lift Z axis
const float z_lift = parser.linearval('Z') const float z_lift = parser.linearval('Z')
#if PAUSE_PARK_Z_ADD > 0 #ifdef PAUSE_PARK_Z_ADD
+ PAUSE_PARK_Z_ADD + PAUSE_PARK_Z_ADD
#endif #endif
; ;
@ -8322,7 +8306,9 @@ inline void gcode_M121() { endstops.enable_globally(false); }
#endif #endif
; ;
const bool job_running = print_job_timer.isRunning(); #if DISABLED(SDSUPPORT)
const bool job_running = print_job_timer.isRunning();
#endif
if (pause_print(retract, z_lift, x_pos, y_pos)) { if (pause_print(retract, z_lift, x_pos, y_pos)) {
#if DISABLED(SDSUPPORT) #if DISABLED(SDSUPPORT)
@ -9642,14 +9628,14 @@ inline void gcode_M502() {
// Initial retract before move to filament change position // Initial retract before move to filament change position
const float retract = parser.seen('E') ? parser.value_axis_units(E_AXIS) : 0 const float retract = parser.seen('E') ? parser.value_axis_units(E_AXIS) : 0
#if defined(PAUSE_PARK_RETRACT_LENGTH) && PAUSE_PARK_RETRACT_LENGTH > 0 #ifdef PAUSE_PARK_RETRACT_LENGTH
- (PAUSE_PARK_RETRACT_LENGTH) - (PAUSE_PARK_RETRACT_LENGTH)
#endif #endif
; ;
// Lift Z axis // Lift Z axis
const float z_lift = parser.linearval('Z', 0 const float z_lift = parser.linearval('Z', 0
#if defined(PAUSE_PARK_Z_ADD) && PAUSE_PARK_Z_ADD > 0 #ifdef PAUSE_PARK_Z_ADD
+ PAUSE_PARK_Z_ADD + PAUSE_PARK_Z_ADD
#endif #endif
); );

@ -167,6 +167,7 @@ private:
extern CardReader card; extern CardReader card;
#define IS_SD_PRINTING (card.sdprinting) #define IS_SD_PRINTING (card.sdprinting)
#define IS_SD_FILE_OPEN (card.isFileOpen())
#if PIN_EXISTS(SD_DETECT) #if PIN_EXISTS(SD_DETECT)
#if ENABLED(SD_DETECT_INVERTED) #if ENABLED(SD_DETECT_INVERTED)
@ -182,6 +183,7 @@ extern CardReader card;
#else #else
#define IS_SD_PRINTING (false) #define IS_SD_PRINTING (false)
#define IS_SD_FILE_OPEN (false)
#endif // SDSUPPORT #endif // SDSUPPORT

@ -2425,7 +2425,7 @@ void kill_screen(const char* lcd_msg) {
// Change filament // Change filament
// //
#if ENABLED(ADVANCED_PAUSE_FEATURE) #if ENABLED(ADVANCED_PAUSE_FEATURE)
if (!thermalManager.tooColdToExtrude(active_extruder) && !IS_SD_PRINTING) if (!thermalManager.tooColdToExtrude(active_extruder) && !IS_SD_FILE_OPEN)
MENU_ITEM(function, MSG_FILAMENTCHANGE, lcd_enqueue_filament_change); MENU_ITEM(function, MSG_FILAMENTCHANGE, lcd_enqueue_filament_change);
#endif #endif

Loading…
Cancel
Save