Packet hashlist save to disk

This commit is contained in:
Mark Qvist 2018-04-24 18:01:52 +02:00
parent eed78798f2
commit 0c49ca8458
3 changed files with 22 additions and 1 deletions

View file

@ -151,7 +151,7 @@ class KISSInterface(Interface):
if written != len(kiss_command):
raise IOError("Could not configure KISS interface slot time to "+str(slottime_ms)+" (command value "+str(slottime)+")")
def setFlowControl(self, flow_control):
def setFlowControl(self, flow_control):
kiss_command = KISS.FEND+KISS.CMD_READY+chr(0x01)+KISS.FEND
written = self.serial.write(kiss_command)
if written != len(kiss_command):