From 842c4623bac608d5d99582f3f50c8ec7ebd33860 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Tue, 28 Oct 2025 09:11:56 -0400 Subject: [PATCH] Update sstv_decode_prompt.sh change prints --- groundstation/sstv_decode_prompt.sh | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/groundstation/sstv_decode_prompt.sh b/groundstation/sstv_decode_prompt.sh index 34021670..a61b2851 100755 --- a/groundstation/sstv_decode_prompt.sh +++ b/groundstation/sstv_decode_prompt.sh @@ -137,8 +137,7 @@ if [ "$autotune" = "1" ]; then # echo "auto-tune.txt" # cat /home/pi/CubeSatSim/groundstation/auto-tune.txt confidence=$(awk '{print $2}' /home/pi/CubeSatSim/groundstation/auto-tune.txt) - echo -n "Auto tune confidence: " - echo $confidence + echo "Auto tune confidence: " $confidence if [ "$confidence" -le "$threshold" ]; then sleep $retry @@ -146,8 +145,7 @@ if [ "$autotune" = "1" ]; then # echo "auto-tune.txt" # cat /home/pi/CubeSatSim/groundstation/auto-tune.txt confidence=$(awk '{print $2}' /home/pi/CubeSatSim/groundstation/auto-tune.txt) - echo -n "Auto tune confidence: " - echo $confidence + echo "Auto tune confidence: " $confidence if [ "$confidence" -le "$threshold" ]; then sleep $retry @@ -155,19 +153,19 @@ if [ "$autotune" = "1" ]; then # echo "auto-tune.txt" # cat /home/pi/CubeSatSim/groundstation/auto-tune.txt confidence=$(awk '{print $2}' /home/pi/CubeSatSim/groundstation/auto-tune.txt) - echo -n "Auto tune confidence: " - echo $confidence + echo "Auto tune confidence: " $confidence fi fi if [ "$confidence" -gt "$threshold" ]; then frequency=$(awk '{print $1}' /home/pi/CubeSatSim/groundstation/auto-tune.txt) - echo -n "Auto tune frequency: " - echo $frequency + echo "Auto tune frequency: " $frequency else echo "Auto tune failed, frequency unchanged" fi echo + echo "If your CubeSatSim is transmitting in SSTV mode (mode 4) you should get images." + echo fi