From e22736ae02d11e07104d6cc334136dbf15107874 Mon Sep 17 00:00:00 2001 From: DJ2LS Date: Fri, 5 Jan 2024 10:49:25 +0100 Subject: [PATCH] fixed ping --- modem/frame_handler_ping.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modem/frame_handler_ping.py b/modem/frame_handler_ping.py index ee74928e..34459938 100644 --- a/modem/frame_handler_ping.py +++ b/modem/frame_handler_ping.py @@ -5,9 +5,9 @@ import data_frame_factory class PingFrameHandler(frame_handler.FrameHandler): def is_frame_for_me(self): - # check if callsign ssid override + call_with_ssid = self.config['STATION']['mycall'] + "-" + str(self.config['STATION']['myssid']) valid, mycallsign = helpers.check_callsign( - self.config['STATION']['mycall'], + call_with_ssid, self.details["frame"]["destination_crc"], self.config['STATION']['ssid_list'])