2023-11-30 08:24:36 +00:00
|
|
|
import frame_handler_ping
|
|
|
|
import helpers
|
|
|
|
import data_frame_factory
|
2023-12-01 18:54:46 +00:00
|
|
|
import frame_handler
|
2023-12-03 14:30:30 +00:00
|
|
|
class CQFrameHandler(frame_handler_ping.PingFrameHandler):
|
2023-11-30 08:24:36 +00:00
|
|
|
|
|
|
|
def should_respond(self):
|
|
|
|
self.logger.debug(f"Respond to CQ: {self.config['MODEM']['respond_to_cq']}")
|
|
|
|
return self.config['MODEM']['respond_to_cq']
|
|
|
|
|
|
|
|
def send_ack(self):
|
|
|
|
factory = data_frame_factory.DataFrameFactory(self.config)
|
|
|
|
qrv_frame = factory.build_qrv(
|
|
|
|
self.details['snr']
|
|
|
|
)
|
|
|
|
self.transmit(qrv_frame)
|