From 5b8f35a9f284f03b5e73c5e1eb69168ce4b1466b Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sun, 22 Mar 2026 12:22:42 -0400 Subject: [PATCH] Update config indicate carrier C2C is off if PacSat or PacSat Ground mode --- config | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/config b/config index a5314504..d2106a8f 100755 --- a/config +++ b/config @@ -297,10 +297,18 @@ if [ "$1" = "" ]; then if [ -f "$FILE" ]; then echo "Radio DTMF/APRS command and control is ON" 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 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 else echo "Radio command and control is OFF"