AX.25 header fix

This commit is contained in:
Mark Qvist 2018-04-11 21:36:35 +02:00
parent 9827da9e0f
commit 52968e8ba5
1 changed files with 2 additions and 1 deletions

View File

@ -163,7 +163,8 @@ class AX25KISSInterface(Interface):
def processIncoming(self, data):
self.owner.inbound(data, self)
if (len(data) > 16):
self.owner.inbound(data[16:], self)
def processOutgoing(self,data):