Update pacsat.sh add sound card VOX option

pacsat-v2.2-tlm3
Alan Johnston 3 weeks ago committed by GitHub
parent c7a359fd7d
commit 5b16fe457f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -3,11 +3,17 @@
# 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
if [ ! -d "/home/pi/PacSatGround" ] ; then
@ -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"

Loading…
Cancel
Save

Powered by TurnKey Linux.