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:
parent
b318c6f018
commit
5fbf6281d7
13 changed files with 83 additions and 27 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue