Browse Source

Patch idle forevermore

pull/1/head
Scott Lahteine 8 years ago
parent
commit
963a92ceda
  1. 6
      Marlin/Marlin.h
  2. 21
      Marlin/Marlin_main.cpp

6
Marlin/Marlin.h

@ -103,7 +103,11 @@ FORCE_INLINE void serialprintPGM(const char* str) {
void get_command();
void idle(); // the standard idle routine calls manage_inactivity(false)
void idle(
#if ENABLED(FILAMENTCHANGEENABLE)
bool no_stepper_sleep=false // pass true to keep steppers from disabling on timeout
#endif
);
void manage_inactivity(bool ignore_stepper_queue = false);

21
Marlin/Marlin_main.cpp

@ -5391,13 +5391,6 @@ inline void gcode_M503() {
#if ENABLED(FILAMENTCHANGEENABLE)
inline void idle2() {
manage_heater();
manage_inactivity(true);
host_keepalive();
lcd_update();
}
/**
* M600: Pause for filament change
*
@ -5484,7 +5477,7 @@ inline void gcode_M503() {
lcd_quick_feedback();
next_tick = ms + 2500; // feedback every 2.5s while waiting
}
idle2();
idle(true);
#else
current_position[E_AXIS] += AUTO_FILAMENT_CHANGE_LENGTH;
destination[E_AXIS] = current_position[E_AXIS];
@ -7040,9 +7033,17 @@ void disable_all_steppers() {
/**
* Standard idle routine keeps the machine alive
*/
void idle() {
void idle(
#if ENABLED(FILAMENTCHANGEENABLE)
bool no_stepper_sleep/*=false*/
#endif
) {
manage_heater();
manage_inactivity();
manage_inactivity(
#if ENABLED(FILAMENTCHANGEENABLE)
no_stepper_sleep
#endif
);
host_keepalive();
lcd_update();
}

Loading…
Cancel
Save