mirror of
https://github.com/markqvist/Reticulum.git
synced 2025-05-06 08:25:57 -04:00
Fixed Python2 remnant in interfaces
This commit is contained in:
parent
a948d153e6
commit
4c3a874b21
3 changed files with 16 additions and 4 deletions
|
@ -429,7 +429,7 @@ class RNodeInterface(Interface):
|
|||
time_since_last = int(time.time()*1000) - last_read_ms
|
||||
if len(data_buffer) > 0 and time_since_last > self.timeout:
|
||||
RNS.log(str(self)+" serial read timeout", RNS.LOG_DEBUG)
|
||||
data_buffer = ""
|
||||
data_buffer = b""
|
||||
in_frame = False
|
||||
command = KISS.CMD_UNKNOWN
|
||||
escape = False
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue