mirror of
https://github.com/markqvist/Reticulum.git
synced 2025-06-12 08:53:00 -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
|
@ -190,7 +190,7 @@ class SerialInterface(Interface):
|
|||
self.owner.inbound(data, self)
|
||||
threading.Thread(target=af, daemon=True).start()
|
||||
|
||||
def processOutgoing(self,data):
|
||||
def process_outgoing(self,data):
|
||||
if self.online:
|
||||
data = bytes([HDLC.FLAG])+HDLC.escape(data)+bytes([HDLC.FLAG])
|
||||
written = self.serial.write(data)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue