From b608b8287df3c69d62fcc89f4e76006c9d9e44c7 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 17 Jan 2026 16:30:08 -0500 Subject: [PATCH] Update config don't transmit x --- config | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/config b/config index 1fee82b5..dfc80d1d 100755 --- a/config +++ b/config @@ -1205,9 +1205,11 @@ elif [ "$1" = "-A" ]; then echo "Enter the mode to change: a=APRS, f=FSK, b=BPSK, s=SSTV, m=CW, e=Repeater, j=FUNcube, o=Beacon on/off x=Exit this mode" read MODE - transmit_command $MODE + if [ "$MODE" != "x" ]; then + transmit_command $MODE + fi - echo $MODE + echo done