temporary fix for starting the modem

This commit is contained in:
DJ2LS 2023-10-26 14:40:28 +02:00
parent e041772bb3
commit eada33df2f
2 changed files with 2 additions and 1 deletions

View file

@ -181,6 +181,7 @@ client.on("data", function (socketdata) {
setTxAudioLevelOnce === true
) {
setTxAudioLevelOnce = false
console.log(setTxAudioLevelOnce)
setTxAudioLevel(settings.tx_audio_level);
}

View file

@ -1005,7 +1005,7 @@ class ThreadedTCPRequestHandler(socketserver.StreamRequestHandler):
if (
received_json["type"] == "set"
and received_json["command"] == "start_modem"
and not Daemon.modemstarted
# and not Daemon.modemstarted
):
self.daemon_start_modem(received_json)