From f58bc10b890663bfeaa1d42bef97ac08ac93a643 Mon Sep 17 00:00:00 2001 From: DJ2LS <75909252+DJ2LS@users.noreply.github.com> Date: Wed, 4 May 2022 16:39:39 +0200 Subject: [PATCH] mkfifo test prototype First partially working prototype for testing the full tnc with mkfifo named pipes. --- tnc/modem.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tnc/modem.py b/tnc/modem.py index 551b0158..3615acf2 100644 --- a/tnc/modem.py +++ b/tnc/modem.py @@ -244,6 +244,10 @@ class RF: ) mkfifo_read_callback_thread.start() + mkfifo_read_callback_thread = threading.Thread(target=self.mkfifo_read_callback, name="MKFIFO READ CALLBACK THREAD",daemon=True) + mkfifo_read_callback_thread.start() + + # --------------------------------------------INIT AND OPEN HAMLIB # Check how we want to control the radio if static.HAMLIB_RADIOCONTROL == "direct":