mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-11-22 13:40:19 +00:00
Compare commits
2 Commits
d1df6d70e1
...
e4ab81d95a
Author | SHA1 | Date | |
---|---|---|---|
|
e4ab81d95a | ||
|
3bbd43cc1b |
@ -338,7 +338,14 @@ class KISSInterface(Interface):
|
||||
if time.time() > self.first_tx + self.beacon_i:
|
||||
RNS.log("Interface "+str(self)+" is transmitting beacon data: "+str(self.beacon_d.decode("utf-8")), RNS.LOG_DEBUG)
|
||||
self.first_tx = None
|
||||
self.processOutgoing(self.beacon_d)
|
||||
|
||||
# Using standard HDLC flag or sync bytes
|
||||
frame = bytearray([0xAA, 0xAA]) # Standard sync pattern
|
||||
frame.extend(self.beacon_d)
|
||||
while len(frame) < 15:
|
||||
frame.append(0x00)
|
||||
|
||||
self.processOutgoing(bytes(frame))
|
||||
|
||||
except Exception as e:
|
||||
self.online = False
|
||||
|
Loading…
Reference in New Issue
Block a user