mirror of
https://github.com/markqvist/Reticulum.git
synced 2025-07-23 23:11:18 -04:00
Refactored processOutgoing to process_outgoing
This commit is contained in:
parent
4a4b625075
commit
36c761e8dd
16 changed files with 33 additions and 33 deletions
|
@ -241,7 +241,7 @@ class KISSInterface(Interface):
|
|||
self.owner.inbound(data, self)
|
||||
|
||||
|
||||
def processOutgoing(self,data):
|
||||
def process_outgoing(self,data):
|
||||
datalen = len(data)
|
||||
if self.online:
|
||||
if self.interface_ready:
|
||||
|
@ -275,7 +275,7 @@ class KISSInterface(Interface):
|
|||
if len(self.packet_queue) > 0:
|
||||
data = self.packet_queue.pop(0)
|
||||
self.interface_ready = True
|
||||
self.processOutgoing(data)
|
||||
self.process_outgoing(data)
|
||||
elif len(self.packet_queue) == 0:
|
||||
self.interface_ready = True
|
||||
|
||||
|
@ -344,7 +344,7 @@ class KISSInterface(Interface):
|
|||
while len(frame) < 15:
|
||||
frame.append(0x00)
|
||||
|
||||
self.processOutgoing(bytes(frame))
|
||||
self.process_outgoing(bytes(frame))
|
||||
|
||||
except Exception as e:
|
||||
self.online = False
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue