Move M92 to cpp

This commit is contained in:
Scott Lahteine
2017-09-17 00:28:10 -05:00
parent 381b17e6a9
commit beb346e49f
3 changed files with 6 additions and 7 deletions

View File

@ -20,13 +20,16 @@
*
*/
#include "../gcode.h"
#include "../../module/planner.h"
/**
* M92: Set axis steps-per-unit for one or more axes, X, Y, Z, and E.
* (Follows the same syntax as G92)
*
* With multiple extruders use T to specify which one.
*/
void gcode_M92() {
void GcodeSuite::M92() {
GET_TARGET_EXTRUDER();