Update sstv_decode_prompt.sh change to less than or equal

fiabv4-auto-tune
Alan Johnston 2 months ago committed by GitHub
parent bd901a424e
commit be27ae69e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -130,7 +130,7 @@ confidence=$(awk '{print $2}' /home/pi/CubeSatSim/groundstation/auto-tune.txt)
echo "Auto tune confidence: "
echo $confidence
if [ "$confidence" -lt "$threshold" ]; then
if [ "$confidence" -le "$threshold" ]; then
sleep 10
python3 /home/pi/CubeSatSim/groundstation/auto-tune.py 434900000 n 2> null > /home/pi/CubeSatSim/groundstation/auto-tune.txt
# echo "auto-tune.txt"
@ -139,7 +139,7 @@ if [ "$confidence" -lt "$threshold" ]; then
echo "Auto tune confidence: "
echo $confidence
if [ "$confidence" -lt "$threshold" ]; then
if [ "$confidence" -le "$threshold" ]; then
sleep 10
python3 /home/pi/CubeSatSim/groundstation/auto-tune.py 434900000 n 2> null > /home/pi/CubeSatSim/groundstation/auto-tune.txt
# echo "auto-tune.txt"

Loading…
Cancel
Save

Powered by TurnKey Linux.