gcode_process.c: remove M107 (fan off).
To turn the fan off, use M106 S0. This aligns with RepRap's G-code wiki page.
This commit is contained in:
parent
06c546959c
commit
94ac2b11b8
|
|
@ -526,24 +526,6 @@ void process_gcode_command() {
|
|||
#endif
|
||||
break;
|
||||
|
||||
case 9:
|
||||
case 107:
|
||||
//? --- M107: Fan Off ---
|
||||
//?
|
||||
//? Example: M107
|
||||
//?
|
||||
//? Turn off the cooling fan (if any).
|
||||
//?
|
||||
|
||||
#ifdef ENFORCE_ORDER
|
||||
// wait for all moves to complete
|
||||
queue_wait();
|
||||
#endif
|
||||
#ifdef HEATER_FAN
|
||||
heater_set(HEATER_FAN, 0);
|
||||
#endif
|
||||
break;
|
||||
|
||||
case 109:
|
||||
//? --- M109: Set Extruder Temperature ---
|
||||
//?
|
||||
|
|
|
|||
Loading…
Reference in New Issue