Added in a pause gcode script object, fixed gcode injection timing

This commit is contained in:
LarsBrubaker 2022-11-27 09:11:49 -08:00
parent 677a1a9b12
commit e63f95ddad
5 changed files with 20 additions and 6 deletions

View file

@ -331,9 +331,9 @@ namespace MatterHackers.MatterControl.Library.Export
accumulatedStream = new BabyStepsStream(printer, accumulatedStream);
accumulatedStream = new RemoveNOPsStream(printer, accumulatedStream);
accumulatedStream = new RunSceneGCodeProcesorsStream(printer, accumulatedStream, queuedCommandStream);
accumulatedStream = new RemoveNOPsStream(printer, accumulatedStream);
accumulatedStream = new ProcessWriteRegexStream(printer, accumulatedStream, queuedCommandStream);