From ee314ea048282840596f9449d52c199ec9d13b72 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sat, 9 Oct 2021 21:19:56 -0400 Subject: [PATCH] quit if no choice made --- groundstation/cubicsdr-packet.sh | 36 ++++++++++++++++++-------------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/groundstation/cubicsdr-packet.sh b/groundstation/cubicsdr-packet.sh index 05130568..c5f0a1e8 100755 --- a/groundstation/cubicsdr-packet.sh +++ b/groundstation/cubicsdr-packet.sh @@ -36,22 +36,26 @@ frequency=$(zenity --list --width=510 --height=320 --title="Packet Decoding with if [ -z "$frequency" ]; then -echo - -echo "Choose the number for the frequency for packet decoding:" -echo -echo "1. APRS US 2m (144390 kHz)" -echo "2. CubeSatSim (434900 kHz)" -echo "3. APRS European 2m (144800 kHz)" -echo "4. APRS Australian 2m (145175 kHz)" -echo "5. APRS on another frequency" -echo "6. APRS on ISS (145825 kHz)" -echo "7. Serenity CubeSat 4800 bps (437100 kHz)" -echo "8. Test Serenity CubeSat decoding with WAV file" - -echo - -read -r choice +echo "No choice made. Exiting." + +sleep 3 + +exit + +#echo "Choose the number for the frequency for packet decoding:" +#echo +#echo "1. APRS US 2m (144390 kHz)" +#echo "2. CubeSatSim (434900 kHz)" +#echo "3. APRS European 2m (144800 kHz)" +#echo "4. APRS Australian 2m (145175 kHz)" +#echo "5. APRS on another frequency" +#echo "6. APRS on ISS (145825 kHz)" +#echo "7. Serenity CubeSat 4800 bps (437100 kHz)" +#echo "8. Test Serenity CubeSat decoding with WAV file" + +#echo + +#read -r choice fi