From 06bc2b3db585bb6a2d563450cd95823d41a7d088 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Mon, 27 Oct 2025 15:57:11 -0400 Subject: [PATCH] Update sstv_decode_prompt.sh fix -lt --- groundstation/sstv_decode_prompt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/groundstation/sstv_decode_prompt.sh b/groundstation/sstv_decode_prompt.sh index 86011979..b9f8d3d3 100755 --- a/groundstation/sstv_decode_prompt.sh +++ b/groundstation/sstv_decode_prompt.sh @@ -127,7 +127,7 @@ threshold="0.1" confidence=$(awk '{print $2}' /home/pi/CubeSatSim/groundstation/auto-tune.txt) echo "Auto tune confidence: " echo $confidence -if [ "$confidence" .lt "$threshold" ]; then +if [ "$confidence" -lt "$threshold" ]; then sleep 10