From 5b16fe457fcab7abda679342e21ce3a768971236 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Wed, 4 Mar 2026 16:53:46 -0500 Subject: [PATCH] Update pacsat.sh add sound card VOX option --- groundstation/pacsat.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/groundstation/pacsat.sh b/groundstation/pacsat.sh index 16640dd6..321907d2 100755 --- a/groundstation/pacsat.sh +++ b/groundstation/pacsat.sh @@ -3,10 +3,16 @@ # script to auto decode packet using rtl_fm and Direwolf and run Pacsat Ground Station loopback=0 +vox=0 if [ "$1" = "l" ] ; then loopback=1 echo "PacSat Ground Station with Loopback" + +elif [ "$1" = "v" ] ; then + + vox=1 + echo "PacSat Ground Station with Soundcard (VOX)" fi @@ -118,6 +124,11 @@ if [ "$loopback" = "1" ]; then echo "Using Audio Loopback" /home/pi/CubeSatSim/groundstation/pacsat-d.sh & +elif [ "$vox" = "1" ]; then + + echo "Using Soundcard Audio TX RX (VOX)" + /home/pi/CubeSatSim/groundstation/pacsat-dj.sh & + else echo "Using TXC FM Transceiver"