Move M17 to cpp

This commit is contained in:
Scott Lahteine
2017-09-16 01:14:21 -05:00
parent 33e00b6cd6
commit adca4a9b79
3 changed files with 6 additions and 5 deletions

View File

@ -116,7 +116,6 @@ void GcodeSuite::dwell(millis_t time) {
//
// Placeholders for non-migrated codes
//
extern void gcode_M17();
extern void gcode_M18_M84();
extern void gcode_M20();
extern void gcode_M21();
@ -422,7 +421,7 @@ void GcodeSuite::process_next_command() {
#endif
case 17: // M17: Enable all stepper motors
gcode_M17();
M17();
break;
#if ENABLED(SDSUPPORT)