From 137ac189fc0c9247bb6c35c475b9adeecb23d4b4 Mon Sep 17 00:00:00 2001 From: DJ2LS Date: Thu, 21 Dec 2023 19:48:30 +0100 Subject: [PATCH] possible fix of broken tci module --- modem/modem.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/modem/modem.py b/modem/modem.py index 1c19a8e6..cc32d7c5 100644 --- a/modem/modem.py +++ b/modem/modem.py @@ -199,14 +199,6 @@ class RF: # lets init TCI module self.tci_module = tci.TCICtrl(self.audio_received_queue) - # let's start the audio tx callback - self.log.debug("[MDM] Starting tci tx callback thread") - tci_tx_callback_thread = threading.Thread( - target=self.tci_tx_callback, - name="TCI TX CALLBACK THREAD", - daemon=True, - ) - tci_tx_callback_thread.start() return True def audio_auto_tune(self):