GCode Preview - Added handling of G10 and G11 commands

This commit is contained in:
Enrico Turri 2018-03-09 15:27:38 +01:00
parent 1fcc7fcdd8
commit d68804772a
2 changed files with 28 additions and 0 deletions

View file

@ -127,6 +127,12 @@ private:
// Move
void _processG1(const GCodeReader::GCodeLine& line);
// Retract
void _processG10(const GCodeReader::GCodeLine& line);
// Unretract
void _processG11(const GCodeReader::GCodeLine& line);
// Firmware controlled Retract
void _processG22(const GCodeReader::GCodeLine& line);