Sfoglia il codice sorgente

Made "stop heating wait" optional.

Default off.
Erik van der Zalm 13 anni fa
parent
commit
f9c5333f97
2 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  1. 3
    0
      Marlin/Configuration.h
  2. 2
    0
      Marlin/cardreader.pde

+ 3
- 0
Marlin/Configuration.h Vedi File

104
 // Heating is finished if a temperature close to this degree shift is reached
104
 // Heating is finished if a temperature close to this degree shift is reached
105
 #define HEATING_EARLY_FINISH_DEG_OFFSET 1 //Degree
105
 #define HEATING_EARLY_FINISH_DEG_OFFSET 1 //Degree
106
 
106
 
107
+//Do not wait for M109 to finish when printing from SD card
108
+//#define STOP_HEATING_WAIT_WHEN_SD_PRINTING
109
+
107
 // PID settings:
110
 // PID settings:
108
 // Uncomment the following line to enable PID support.
111
 // Uncomment the following line to enable PID support.
109
 #define PIDTEMP
112
 #define PIDTEMP

+ 2
- 0
Marlin/cardreader.pde Vedi File

444
  st_synchronize();
444
  st_synchronize();
445
  quickStop();
445
  quickStop();
446
  sdprinting = false;
446
  sdprinting = false;
447
+ #ifdef STOP_HEATING_WAIT_FOR_SD_PRINTING
447
  stop_heating_wait=true;
448
  stop_heating_wait=true;
449
+ #endif
448
  if(SD_FINISHED_STEPPERRELEASE)
450
  if(SD_FINISHED_STEPPERRELEASE)
449
  {
451
  {
450
    //finishAndDisableSteppers();
452
    //finishAndDisableSteppers();

Loading…
Annulla
Salva