Removed delay

This commit is contained in:
Mark Qvist 2022-06-09 16:48:31 +02:00
parent 14bdcaf770
commit d334613888

View File

@ -152,10 +152,6 @@ class LocalClientInterface(Interface):
def processOutgoing(self, data):
if self.online:
# TODO: Reset maybe?
while self.writing:
time.sleep(0.0005)
try:
self.writing = True
data = bytes([HDLC.FLAG])+HDLC.escape(data)+bytes([HDLC.FLAG])