Skip to content

Commit

Permalink
Fixed stop print LCD function on M104
Browse files Browse the repository at this point in the history
  • Loading branch information
Pablo Clemente authored and cocktailyogi committed Jul 18, 2014
1 parent 1875ab3 commit c51a6f9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Marlin/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1945,14 +1945,16 @@ void process_commands()

/* See if we are heating up or cooling down */
target_direction = isHeatingHotend(tmp_extruder); // true if heating, false if cooling

forced_heating_stop = true;

#ifdef TEMP_RESIDENCY_TIME
long residencyStart;
residencyStart = -1;
/* continue to loop until we have reached the target temp
_and_ until TEMP_RESIDENCY_TIME hasn't passed since we reached it */
while((residencyStart == -1) ||
(residencyStart >= 0 && (((unsigned int) (millis() - residencyStart)) < (TEMP_RESIDENCY_TIME * 1000UL))) ) {
while((forced_heating_stop == true)&&((residencyStart == -1) ||
(residencyStart >= 0 && (((unsigned int) (millis() - residencyStart)) < (TEMP_RESIDENCY_TIME * 1000UL)))) ) {
#else
while ( target_direction ? (isHeatingHotend(tmp_extruder)) : (isCoolingHotend(tmp_extruder)&&(CooldownNoWait==false)) ) {
#endif //TEMP_RESIDENCY_TIME
Expand Down
3 changes: 3 additions & 0 deletions Marlin/ultralcd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ int absPreheatHotendTemp;
int absPreheatHPBTemp;
int absPreheatFanSpeed;

boolean forced_heating_stop = true ;

#ifdef ULTIPANEL
static float manual_feedrate[] = MANUAL_FEEDRATE;
Expand Down Expand Up @@ -256,6 +257,8 @@ static void lcd_sdcard_stop()
enquecommand_P(PSTR(SD_FINISHED_RELEASECOMMAND));
}
autotempShutdown();

forced_heating_stop = false;
}

/* Menu implementation */
Expand Down
2 changes: 2 additions & 0 deletions Marlin/ultralcd.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
extern int absPreheatHotendTemp;
extern int absPreheatHPBTemp;
extern int absPreheatFanSpeed;

extern boolean forced_heating_stop;

void lcd_buzz(long duration,uint16_t freq);
bool lcd_clicked();
Expand Down

0 comments on commit c51a6f9

Please sign in to comment.