Update config indicate carrier C2C is off if PacSat or PacSat Ground mode

master-b-p
Alan Johnston 6 days ago committed by GitHub
parent 17cdbb43de
commit 5b8f35a9f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -297,10 +297,18 @@ if [ "$1" = "" ]; then
if [ -f "$FILE" ]; then if [ -f "$FILE" ]; then
echo "Radio DTMF/APRS command and control is ON" echo "Radio DTMF/APRS command and control is ON"
else else
echo "Radio carrier command and control is ON" if [ "$MODE" = "p" ] || [ "$MODE" = "P" ] ; then
echo "Radio carrier command and control is off since PacSat or PacSat Ground Station mode"
else
echo "Radio carrier command and control is ON"
fi
fi fi
else else
echo "Radio carrier command and control is ON" if [ "$MODE" = "p" ] || [ "$MODE" = "P" ] ; then
echo "Radio carrier command and control is off since PacSat or PacSat Ground Station mode"
else
echo "Radio carrier command and control is ON"
fi
fi fi
else else
echo "Radio command and control is OFF" echo "Radio command and control is OFF"

Loading…
Cancel
Save

Powered by TurnKey Linux.