From 172d35e02d88f646004a343cc91c81d963014ba6 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sun, 22 Mar 2026 14:06:13 -0400 Subject: [PATCH] Update pacsatsim.sh print callsign and frequencies in log --- pacsatsim.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pacsatsim.sh b/pacsatsim.sh index 04d861b6..c5ebcf43 100755 --- a/pacsatsim.sh +++ b/pacsatsim.sh @@ -59,6 +59,24 @@ else rtl=1 fi +value=`cat /home/pi/CubeSatSim/sim.cfg` +echo "$value" > /dev/null +set -- $value + +callsign="$1" +txfrequency="$7e3" +rxfrequency="$8e3" + +echo -n "PacSat allsign is " +echo $callsign +echo -n "Transmit Frequency is " +echo $txfrequency +echo -n "Receive Frequency is " +echo $rxfrequency +echo + +sleep 2 + if [ ! -d "/home/pi/PacSat" ]; then echo "Setting up PacSatSim default configuration"