Add rough debugging system for stream processors

This commit is contained in:
jlewin 2019-02-27 18:20:27 -08:00
parent c82fb09e3d
commit 88f7de14c1
20 changed files with 184 additions and 10 deletions

View file

@ -50,6 +50,14 @@ namespace MatterHackers.MatterControl.PrinterCommunication.Io
activeExtruderIndex = printer.Connection.ActiveExtruderIndex;
}
public override string DebugInfo
{
get
{
return $"Last Destination = {lastDestination}";
}
}
private bool CheckIfNeedToSwitchExtruders(string lineIn)
{
bool queuedSwitch = false;