Browse Source

M202 is unused

pull/1/head
Scott Lahteine 7 years ago
parent
commit
b3822b9242
  1. 4
      Marlin/src/Marlin.cpp
  2. 7
      Marlin/src/gcode/gcode.cpp

4
Marlin/src/Marlin.cpp

@ -355,10 +355,6 @@ bool pin_is_protected(const int8_t pin) {
return false;
}
#if 0 // Not used for Sprinter/grbl gen6
#include "gcode/config/M202.h"
#endif
#include "gcode/config/M203.h"
#include "gcode/config/M204.h"
#include "gcode/config/M205.h"

7
Marlin/src/gcode/gcode.cpp

@ -532,11 +532,10 @@ void GcodeSuite::process_next_command() {
case 201: M201(); break; // M201: Set max acceleration for print moves (units/s^2)
#if 0 // Not used for Sprinter/grbl gen6
case 202: // M202
gcode_M202();
break;
#if 0
case 202: M202(); break; // Not used for Sprinter/grbl gen6
#endif
case 203: // M203: Set max feedrate (units/sec)
gcode_M203();
break;

Loading…
Cancel
Save