put in the ability to specify "; NO_PROCESSING" on a gcode line

issue: MatterHackers/MCCentral#4663
set position Z Tower and no Level
This commit is contained in:
Lars Brubaker 2018-12-03 16:33:25 -08:00
parent b318c6f018
commit 5fbf6281d7
13 changed files with 83 additions and 27 deletions

View file

@ -63,6 +63,11 @@ namespace MatterHackers.MatterControl.PrinterCommunication.Io
return null;
}
if (baseLine.EndsWith("; NO_PROCESSING"))
{
return baseLine;
}
// if the line has no content don't process it
if (baseLine.Length == 0
|| baseLine.Trim().Length == 0)