This commit is contained in:
Mark Qvist 2023-10-22 10:43:31 +02:00
parent e37214f46d
commit 10a1f32057
2 changed files with 0 additions and 4 deletions

View File

@ -3096,7 +3096,6 @@ class SidebandApp(MDApp):
self.location_error_dialog.dismiss() self.location_error_dialog.dismiss()
def map_show(self, location): def map_show(self, location):
RNS.log(str(location), RNS.LOG_WARNING)
if hasattr(self.root.ids.map_layout, "map") and self.root.ids.map_layout.map: if hasattr(self.root.ids.map_layout, "map") and self.root.ids.map_layout.map:
self.root.ids.map_layout.map.lat = location["latitude"] self.root.ids.map_layout.map.lat = location["latitude"]
self.root.ids.map_layout.map.lon = location["longtitude"] self.root.ids.map_layout.map.lon = location["longtitude"]
@ -3175,7 +3174,6 @@ class SidebandApp(MDApp):
retain_own = True retain_own = True
if not own_address in self.map_markers: if not own_address in self.map_markers:
RNS.log("Adding own marker", RNS.LOG_WARNING)
marker = self.map_create_marker(own_address, own_telemetry, own_appearance) marker = self.map_create_marker(own_address, own_telemetry, own_appearance)
if marker != None: if marker != None:
self.map_markers[own_address] = marker self.map_markers[own_address] = marker

View File

@ -751,7 +751,6 @@ class SidebandCore():
for pt in pts: for pt in pts:
try: try:
t = Telemeter.from_packed(pt[1]).read_all() t = Telemeter.from_packed(pt[1]).read_all()
RNS.log(str(t), RNS.LOG_WARNING)
if "location" in t: if "location" in t:
l = t["location"] l = t["location"]
if "latitude" in l and "longtitude" in l: if "latitude" in l and "longtitude" in l:
@ -1145,7 +1144,6 @@ class SidebandCore():
if "snr" in physical_link: remote_telemeter.sensors["physical_link"].snr = physical_link["snr"] if "snr" in physical_link: remote_telemeter.sensors["physical_link"].snr = physical_link["snr"]
if "q" in physical_link: remote_telemeter.sensors["physical_link"].q = physical_link["q"] if "q" in physical_link: remote_telemeter.sensors["physical_link"].q = physical_link["q"]
remote_telemeter.sensors["physical_link"].update_data() remote_telemeter.sensors["physical_link"].update_data()
RNS.log("PACKED: "+str(remote_telemeter.read_all()), RNS.LOG_WARNING)
query = "INSERT INTO telemetry (dest_context, ts, data) values (?, ?, ?)" query = "INSERT INTO telemetry (dest_context, ts, data) values (?, ?, ?)"
data = (context_dest, telemetry_timestamp, telemetry) data = (context_dest, telemetry_timestamp, telemetry)