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:
Markus Hitter 2012-08-31 13:15:58 +02:00
parent 06c546959c
commit 94ac2b11b8
1 changed files with 0 additions and 18 deletions

View File

@ -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 ---
//?