white space

limit to 20 instructions per second
Don't allow g29 if doing print leveling.
This commit is contained in:
Lars Brubaker 2015-12-22 15:34:57 -08:00
parent 31a64df4ee
commit e46797d259
3 changed files with 135 additions and 128 deletions

View file

@ -37,7 +37,7 @@ namespace MatterHackers.MatterControl.PrinterCommunication.Io
{
protected PrinterMove lastDestination = new PrinterMove();
private List<PrinterMove> movesToSend = new List<PrinterMove>();
private double maxSecondsPerSegment = 1.0/30.0; // 30 instruction per second
private double maxSecondsPerSegment = 1.0/20.0; // 20 instruction per second
public MaxLengthStream(GCodeStream internalStream, double maxSegmentLength)
: base(internalStream)