From 6d8c035a1a7ab9a6cf5ac4c3d2ab89e4ac1b812d Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sun, 5 Jul 2026 11:22:27 -0400 Subject: [PATCH] Update transmit.py change start string --- transmit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transmit.py b/transmit.py index c33d377f..61920bdd 100644 --- a/transmit.py +++ b/transmit.py @@ -621,7 +621,7 @@ def transmit_carrier(duration): global tx_doppler_freq_hz global txLed # command = "timeout " + str(duration) + " sudo tune -f " + str(tx_doppler_freq_hz) + " > /dev/null 2>&1" # 434.9e6 - start = "sudo tune -f " + str(tx_doppler_freq_hz) + " & > /dev/null 2>&1" # 434.9e6 + start = "sudo tune -f " + str(tx_doppler_freq_hz) # + " & > /dev/null 2>&1" # 434.9e6 stop = "sudo killall -9 tune" output(txLed, 1) system(start)