mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
forgot to adjust cq function
This commit is contained in:
parent
14269a718b
commit
0c5d755e1a
1 changed files with 5 additions and 1 deletions
|
@ -253,7 +253,11 @@ class ThreadedTCPRequestHandler(socketserver.StreamRequestHandler):
|
||||||
|
|
||||||
# CQ CQ CQ
|
# CQ CQ CQ
|
||||||
if received_json["command"] == "cqcqcq":
|
if received_json["command"] == "cqcqcq":
|
||||||
|
if TESTMODE:
|
||||||
|
ThreadedTCPRequestHandler.tnc_cqcqcq(None, received_json)
|
||||||
|
else:
|
||||||
self.tnc_cqcqcq(received_json)
|
self.tnc_cqcqcq(received_json)
|
||||||
|
|
||||||
# START_BEACON
|
# START_BEACON
|
||||||
if received_json["command"] == "start_beacon":
|
if received_json["command"] == "start_beacon":
|
||||||
if TESTMODE:
|
if TESTMODE:
|
||||||
|
|
Loading…
Reference in a new issue