mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-11-23 06:00:18 +00:00
Enhanced error handling
This commit is contained in:
parent
ebd77a6c7d
commit
2c67ae9d8b
@ -1,67 +1,102 @@
|
|||||||
|
|
||||||
from .Interface import Interface
|
from .Interface import Interface
|
||||||
import meshtastic
|
|
||||||
import meshtastic.serial_interface
|
|
||||||
from pubsub import pub
|
from pubsub import pub
|
||||||
import time
|
import time
|
||||||
import sys
|
import sys
|
||||||
import RNS
|
import RNS
|
||||||
|
|
||||||
|
try:
|
||||||
|
import meshtastic
|
||||||
|
import meshtastic.serial_interface
|
||||||
|
|
||||||
class MeshtasticInterface(Interface):
|
class MeshtasticInterface(Interface):
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def onReceive(packet, interface):
|
def onReceive(packet, interface):
|
||||||
#print(f"Received: {packet}")
|
if packet['decoded']['portnum'] == "PRIVATE_APP":
|
||||||
if packet['decoded']['portnum'] == "PRIVATE_APP":
|
interface.callback.processIncoming(packet['decoded']['payload'])
|
||||||
interface.callback.processIncoming(packet['decoded']['payload'])
|
|
||||||
|
|
||||||
def __init__(self, owner, name, port=None, channel=0):
|
def __init__(self, owner, name, config):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
|
||||||
self.rxb = 0
|
self.port = config["port"] if "port" in config else None
|
||||||
self.txb = 0
|
RNS.log("MeshtasticInterface: port="+str(self.port), RNS.LOG_DEBUG)
|
||||||
|
self.channel = int(config["channel"]) if "channel" in config else 0
|
||||||
|
RNS.log("MeshtasticInterface: channel="+str(self.channel), RNS.LOG_DEBUG)
|
||||||
|
|
||||||
self.HW_MTU = 256
|
self.rxb = 0
|
||||||
|
self.txb = 0
|
||||||
|
|
||||||
self.IN = True
|
self.HW_MTU = 256
|
||||||
self.OUT = False
|
|
||||||
self.owner = owner
|
|
||||||
self.name = name
|
|
||||||
self.port = port
|
|
||||||
self.channel = channel
|
|
||||||
self.online = False
|
|
||||||
# static default long-fast bitrate
|
|
||||||
self.bitrate = 5469
|
|
||||||
self.bitrate_kbps = 5.47
|
|
||||||
|
|
||||||
RNS.log("Initializing Meshtastic interface...", RNS.LOG_DEBUG)
|
self.IN = True
|
||||||
self.interface = meshtastic.serial_interface.SerialInterface(devPath=port)
|
self.OUT = False
|
||||||
self.interface.callback = self
|
self.owner = owner
|
||||||
|
self.name = name
|
||||||
|
self.online = False
|
||||||
|
# static default long-fast bitrate
|
||||||
|
self.bitrate = 5469
|
||||||
|
self.bitrate_kbps = 5.47
|
||||||
|
|
||||||
RNS.log("Subscribing to Meshtastic events", RNS.LOG_DEBUG)
|
self.interface = None
|
||||||
pub.subscribe(self.onReceive, "meshtastic.receive.data")
|
|
||||||
|
|
||||||
RNS.log("Initialized Meshtastic interface!", RNS.LOG_DEBUG)
|
try:
|
||||||
|
RNS.log("Initializing Meshtastic interface...", RNS.LOG_DEBUG)
|
||||||
|
# avoid api forcing app to terminate when no devices are found
|
||||||
|
if self.port == None:
|
||||||
|
ports = meshtastic.util.findPorts(True)
|
||||||
|
if len(ports) == 0:
|
||||||
|
RNS.log("Failed to initialize Meshtastic interface! No devices found", RNS.LOG_ERROR)
|
||||||
|
return
|
||||||
|
self.interface = meshtastic.serial_interface.SerialInterface(devPath=self.port)
|
||||||
|
self.interface.callback = self
|
||||||
|
|
||||||
def processIncoming(self, data):
|
RNS.log("Subscribing to Meshtastic events", RNS.LOG_DEBUG)
|
||||||
RNS.log("Received Meshtastic packet "+RNS.prettyhexrep(data), RNS.LOG_DEBUG)
|
pub.subscribe(self.onReceive, "meshtastic.receive.data")
|
||||||
self.rxb += len(data)
|
|
||||||
self.owner.inbound(data, self)
|
|
||||||
|
|
||||||
def processOutgoing(self, data):
|
except Exception as e:
|
||||||
RNS.log("Sending Meshtastic packet "+RNS.prettyhexrep(data), RNS.LOG_DEBUG)
|
RNS.log("Failed to initialize Meshtastic interface! "+str(e), RNS.LOG_ERROR)
|
||||||
try:
|
self.interface = None
|
||||||
#self.interface.sendData(data)
|
return
|
||||||
self.interface.sendData(data, portNum=256, channelIndex=self.channel)
|
|
||||||
self.txb += len(data)
|
|
||||||
|
|
||||||
except Exception as e:
|
RNS.log("Initialized Meshtastic interface!", RNS.LOG_DEBUG)
|
||||||
RNS.log("Could not transmit on "+str(self)+". The contained exception was: "+str(e), RNS.LOG_ERROR)
|
|
||||||
|
|
||||||
|
def processIncoming(self, data):
|
||||||
|
RNS.log("Received Meshtastic packet "+RNS.prettyhexrep(data), RNS.LOG_DEBUG)
|
||||||
|
self.rxb += len(data)
|
||||||
|
self.owner.inbound(data, self)
|
||||||
|
|
||||||
def __str__(self):
|
def processOutgoing(self, data):
|
||||||
if self.port == None:
|
if self.interface == None:
|
||||||
return "MeshtasticInterface["+self.name+"]"
|
return
|
||||||
return "MeshtasticInterface["+self.name+"/"+self.port+"]"
|
RNS.log("Sending Meshtastic packet "+RNS.prettyhexrep(data), RNS.LOG_DEBUG)
|
||||||
|
try:
|
||||||
|
#self.interface.sendData(data)
|
||||||
|
self.interface.sendData(data, portNum=256, channelIndex=self.channel)
|
||||||
|
self.txb += len(data)
|
||||||
|
except Exception as e:
|
||||||
|
RNS.log("Could not transmit on "+str(self)+". The contained exception was: "+str(e), RNS.LOG_ERROR)
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
if self.port == None:
|
||||||
|
return "MeshtasticInterface["+self.name+"]"
|
||||||
|
return "MeshtasticInterface["+self.name+"/"+self.port+"]"
|
||||||
|
|
||||||
|
except ImportError:
|
||||||
|
|
||||||
|
class MeshtasticInterface(Interface):
|
||||||
|
|
||||||
|
def __init__(self, owner, name, port=None, channel=0):
|
||||||
|
super().__init__()
|
||||||
|
|
||||||
|
RNS.log("Failed to initialize Meshtastic interface! Meshtastic API is not installed", RNS.LOG_ERROR)
|
||||||
|
#raise OSError("Meshtastic API is not installed")
|
||||||
|
|
||||||
|
def processOutgoing(self, data):
|
||||||
|
return
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
if self.port == None:
|
||||||
|
return "MeshtasticInterface["+self.name+"]"
|
||||||
|
return "MeshtasticInterface["+self.name+"/"+self.port+"]"
|
||||||
|
|
||||||
|
@ -935,14 +935,10 @@ class Reticulum:
|
|||||||
|
|
||||||
if c["type"] == "MeshtasticInterface":
|
if c["type"] == "MeshtasticInterface":
|
||||||
|
|
||||||
port = c["port"] if "port" in c else None
|
|
||||||
channel = int(c["channel"]) if "channel" in c else 0
|
|
||||||
|
|
||||||
interface = MeshtasticInterface.MeshtasticInterface(
|
interface = MeshtasticInterface.MeshtasticInterface(
|
||||||
RNS.Transport,
|
RNS.Transport,
|
||||||
name,
|
name,
|
||||||
port,
|
c
|
||||||
channel
|
|
||||||
)
|
)
|
||||||
|
|
||||||
if "outgoing" in c and c.as_bool("outgoing") == False:
|
if "outgoing" in c and c.as_bool("outgoing") == False:
|
||||||
|
Loading…
Reference in New Issue
Block a user