From 7c3770c051e3b2ef5f3e8e29f9383b60b359e9a5 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 6 Jun 2026 07:38:27 -0400 Subject: [PATCH 1/6] Update dtmf_aprs_cc.py Update dtmf_aprs_cc.py fix FUNcube and Repeater mode --- dtmf_aprs_cc.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/dtmf_aprs_cc.py b/dtmf_aprs_cc.py index 9ac5909f..5e8d302e 100644 --- a/dtmf_aprs_cc.py +++ b/dtmf_aprs_cc.py @@ -61,6 +61,7 @@ if __name__ == "__main__": system("echo '\nBPSK Mode!!\n'") mode = 'b' change_mode = True + elif ((line.find("MODE=s")) > 0): system("echo '\nSSTV Mode!!\n'") mode = 's' @@ -85,8 +86,18 @@ if __name__ == "__main__": system("echo '\nRepeater Mode!!\n'") mode = 'e' change_mode = True - + elif ((line.find(":t6#")) > 0): + system("echo '\nRepeater Mode!!\n'") + mode = 'e' + change_mode = True + + elif ((line.find("MODE=j")) > 0): + system("echo '\nFUNcube Mode!!\n'") + mode = 'j' + change_mode = True + + elif ((line.find(":t7#")) > 0): system("echo '\nFUNcube Mode!!\n'") mode = 'j' change_mode = True From 6c09133fcbb09adfce94e8fb812d003f1ef2f358 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 6 Jun 2026 07:46:46 -0400 Subject: [PATCH 2/6] Update install update pi-power-button to master-b branch --- install | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/install b/install index c5e5451a..ce5c7bb7 100755 --- a/install +++ b/install @@ -480,8 +480,17 @@ fi cd /home/pi/pi-power-button +if [ ! $(git branch --show-current | grep master-b) ]; then + + echo "updating branch of pi-power-button to master-b." + git pull + git checkout master-b + script/install + FLAG=1 +fi + git pull --no-rebase > .updated_p -git checkout master +#git checkout master grep 'changed' /home/pi/pi-power-button/.updated_p if [[ $(grep 'changed' /home/pi/pi-power-button/.updated_p) ]]; then From 529d8eac5dbf928317980cf1e58077f0ad58116a Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 6 Jun 2026 07:50:42 -0400 Subject: [PATCH 3/6] Update command.sh add PacSatSim mode p --- groundstation/command.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/groundstation/command.sh b/groundstation/command.sh index e471e3cb..e550b832 100755 --- a/groundstation/command.sh +++ b/groundstation/command.sh @@ -20,7 +20,7 @@ echo autotune=0 -mode=$(zenity --timeout=20 --list 2>/dev/null --width=300 --height=360 --title="Transmit Command" --text="Choose the command to transmit" --column="Mode" --column="Result" a "APRS Mode" f "FSK Mode" b "BPSK Mode" s "SSTV Mode" m "CM Mode" e "Repeater Mode" j "FUNcube Mode" o "Beacon On/Off") +mode=$(zenity --timeout=20 --list 2>/dev/null --width=300 --height=360 --title="Transmit Command" --text="Choose the command to transmit" --column="Mode" --column="Result" a "APRS Mode" f "FSK Mode" b "BPSK Mode" s "SSTV Mode" m "CM Mode" e "Repeater Mode" j "FUNcube Mode" p "PacSatSim Mode" o "Beacon On/Off") # echo $mode From 1ca0b5cc0876ec4c3812210c4cc6f577fe1aa783 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 6 Jun 2026 08:35:30 -0400 Subject: [PATCH 4/6] Update dtmf_aprs_cc.py fix PacSat --- dtmf_aprs_cc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dtmf_aprs_cc.py b/dtmf_aprs_cc.py index 5e8d302e..34ae0a7b 100644 --- a/dtmf_aprs_cc.py +++ b/dtmf_aprs_cc.py @@ -104,12 +104,12 @@ if __name__ == "__main__": elif ((line.find("MODE=G")) > 0): system("echo '\nPacSatSim Mode!!\n'") - mode = 'p' + mode = 'G' change_mode = True elif ((line.find(":t8#")) > 0): system("echo '\nPacSatSim Mode!!\n'") - mode = 'p' + mode = 'G' change_mode = True elif ((line.find("MODE=n")) > 0): From 0fc311601bb2e3cd0859c15480042433b1ebf148 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 6 Jun 2026 08:48:49 -0400 Subject: [PATCH 5/6] Update command.sh increase zenity window size --- groundstation/command.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/groundstation/command.sh b/groundstation/command.sh index e550b832..e83f5881 100755 --- a/groundstation/command.sh +++ b/groundstation/command.sh @@ -20,7 +20,7 @@ echo autotune=0 -mode=$(zenity --timeout=20 --list 2>/dev/null --width=300 --height=360 --title="Transmit Command" --text="Choose the command to transmit" --column="Mode" --column="Result" a "APRS Mode" f "FSK Mode" b "BPSK Mode" s "SSTV Mode" m "CM Mode" e "Repeater Mode" j "FUNcube Mode" p "PacSatSim Mode" o "Beacon On/Off") +mode=$(zenity --timeout=20 --list 2>/dev/null --width=300 --height=380 --title="Transmit Command" --text="Choose the command to transmit" --column="Mode" --column="Result" a "APRS Mode" f "FSK Mode" b "BPSK Mode" s "SSTV Mode" m "CM Mode" e "Repeater Mode" j "FUNcube Mode" p "PacSatSim Mode" o "Beacon On/Off") # echo $mode From 0e6513d1571e9288b6bb867418465165f4da9c86 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 6 Jun 2026 08:49:41 -0400 Subject: [PATCH 6/6] Update command.sh fix PacSatSim --- groundstation/command.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/groundstation/command.sh b/groundstation/command.sh index e83f5881..6069f9b2 100755 --- a/groundstation/command.sh +++ b/groundstation/command.sh @@ -20,7 +20,7 @@ echo autotune=0 -mode=$(zenity --timeout=20 --list 2>/dev/null --width=300 --height=380 --title="Transmit Command" --text="Choose the command to transmit" --column="Mode" --column="Result" a "APRS Mode" f "FSK Mode" b "BPSK Mode" s "SSTV Mode" m "CM Mode" e "Repeater Mode" j "FUNcube Mode" p "PacSatSim Mode" o "Beacon On/Off") +mode=$(zenity --timeout=20 --list 2>/dev/null --width=300 --height=380 --title="Transmit Command" --text="Choose the command to transmit" --column="Mode" --column="Result" a "APRS Mode" f "FSK Mode" b "BPSK Mode" s "SSTV Mode" m "CM Mode" e "Repeater Mode" j "FUNcube Mode" G "PacSatSim Mode" o "Beacon On/Off") # echo $mode