From 9264a53351b98e3a40882e6e1d16b3e390022e0e Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Mon, 23 Aug 2021 22:13:33 -0400 Subject: [PATCH] added EU and AU APRS frequencies --- groundstation/aprs.sh | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/groundstation/aprs.sh b/groundstation/aprs.sh index 4a015a43..797fddfe 100755 --- a/groundstation/aprs.sh +++ b/groundstation/aprs.sh @@ -26,9 +26,11 @@ sudo killall -9 CubicSDR &>/dev/null echo echo "Choose the number for the frequency for APRS decoding:" -echo "1. APRS Standard 2m US (144390Hz)" +echo "1. APRS US 2m (144390 kHz)" echo "2. CubeSatSim (434900 kHz)" -echo "3. Enter a frequency in kiloHertz" +echo "3. APRS European 2m (144800 kHz)" +echo "4. APRS Australian 2m (145175 kHz)" +echo "5. Enter a frequency in kiloHertz" echo read -r choice @@ -41,6 +43,14 @@ elif [ "$choice" = "2" ]; then frequency=434900000 +elif [ "$choice" = "3" ]; then + +frequency=144800000 + +elif [ "$choice" = "4" ]; then + +frequency=145175000 + else echo