Move G92 to cpp

This commit is contained in:
Scott Lahteine
2017-09-16 00:37:35 -05:00
parent 931aa79d85
commit 04376975ce
3 changed files with 11 additions and 6 deletions

View File

@ -116,7 +116,6 @@ void GcodeSuite::dwell(millis_t time) {
//
// Placeholders for non-migrated codes
//
extern void gcode_G92();
extern void gcode_M0_M1();
extern void gcode_M3_M4(bool is_M3);
extern void gcode_M5();
@ -394,8 +393,8 @@ void GcodeSuite::process_next_command() {
relative_mode = true;
break;
case 92: // G92
gcode_G92();
case 92: // G92 - Set current axis position(s)
G92();
break;
#if HAS_MESH