From b5f1745cccb53f1d0fcaadc75ae3f2506a1d4aa9 Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Mon, 2 Mar 2020 21:43:56 -0700 Subject: [PATCH] try removing multi-threading --- Software/python/hwtest.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Software/python/hwtest.py b/Software/python/hwtest.py index 959c14c..a0e67c5 100644 --- a/Software/python/hwtest.py +++ b/Software/python/hwtest.py @@ -168,5 +168,6 @@ def control_thread(): # Start controller # TODO: add start/stop/reset capability to GUI -control_thread = threading.Thread(target=control_thread) -control_thread.start() +# control_thread = threading.Thread(target=control_thread) +# control_thread.start() +control_thread() \ No newline at end of file