Compare commits

..

No commits in common. "5e15f421b73bf17cc3efc93330c503438c769a4d" and "875348383d913c9cb35bba37f3ad76a06cf4e0e9" have entirely different histories.

6 changed files with 9 additions and 6 deletions

View File

@ -82,7 +82,8 @@ class KISSInterface(Interface):
else:
raise SystemError("Android-specific interface was used on non-Android OS")
super().__init__()
self.rxb = 0
self.txb = 0
self.HW_MTU = 564

View File

@ -166,8 +166,8 @@ class AndroidBluetoothManager():
raise IOError("The Bluetooth RFcomm socket could not be connected: "+str(e))
except Exception as e:
RNS.log("Could not create and connect Bluetooth RFcomm socket for "+str(device.getName())+" "+str(device.getAddress()), RNS.LOG_DEBUG)
RNS.log("The contained exception was: "+str(e), RNS.LOG_DEBUG)
RNS.log("Could not create and connect Bluetooth RFcomm socket for "+str(device.getName())+" "+str(device.getAddress()), RNS.LOG_ERROR)
RNS.log("The contained exception was: "+str(e), RNS.LOG_ERROR)
def close(self):
if self.connected:
@ -349,7 +349,8 @@ class RNodeInterface(Interface):
else:
raise SystemError("Android-specific interface was used on non-Android OS")
super().__init__()
self.rxb = 0
self.txb = 0
self.HW_MTU = 508

View File

@ -72,7 +72,8 @@ class SerialInterface(Interface):
else:
raise SystemError("Android-specific interface was used on non-Android OS")
super().__init__()
self.rxb = 0
self.txb = 0
self.HW_MTU = 564

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long