This commit is contained in:
backuppc
2025-12-17 14:53:43 +09:00
parent 2a5bb77dab
commit 283910459e
2 changed files with 7 additions and 0 deletions

View File

@@ -43,5 +43,7 @@ namespace ENIGProtocol
EmptyNode,
Goto,
ManualMode,
UnknownCommand,
UnknownAlias,
}
}

View File

@@ -224,6 +224,11 @@ namespace ENIG
ProtocolParseError += 1;
if (ProtocolParseError > 3) buffer.Clear();
} else ProtocolParseError = 0;
if(buffer.Any())
{
System.Threading.Thread.Sleep(1);
}
}
}
}