white space
limit to 20 instructions per second Don't allow g29 if doing print leveling.
This commit is contained in:
parent
31a64df4ee
commit
e46797d259
3 changed files with 135 additions and 128 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue