Update config move function to start

pull/327/head
Alan Johnston 1 year ago committed by GitHub
parent cbb454b97a
commit ade065bf9d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +1,42 @@
#!/bin/bash
function transmit_command_aprs {
FILE=/home/pi/CubeSatSim/transmit_dtmf
if [ -f "$FILE" ]; then
echo "Stopping command and control"
sudo systemctl stop command
echo "Transmit start"
gpio write 28 0 # ptt
gpio write 27 1 # tx LED
timeout 3 direwolf -c /home/pi/CubeSatSim/direwolf/direwolf-transmit-dtmf-aprs.conf
gpio write 27 0 # tx LED
gpio write 28 1 #ptt
echo "Transmit stop"
echo "Resuming command and control"
sudo systemctl start command
else
STRING="AMSAT-11>APCSS:=3901.40N\07704.39WShi hi MODE=a"
sudo rm /home/pi/CubeSatSim/t.txt
echo $STRING > /home/pi/CubeSatSim/t.txt
echo
echo -n "Sending APRS packet to change mode to APRS"
echo $STRING
sudo touch /home/pi/CubeSatSim/ready
sleep 5
sudo touch /home/pi/CubeSatSim/ready
sleep 5
fi
exit
}
echo "CubeSatSim v1.3.2 configuration tool"
echo
# echo $1
@ -1107,39 +1144,4 @@ if [ "$restart" = "1" ] ; then
fi
fi
function transmit_command_aprs {
FILE=/home/pi/CubeSatSim/transmit_dtmf
if [ -f "$FILE" ]; then
echo "Stopping command and control"
sudo systemctl stop command
echo "Transmit start"
gpio write 28 0 # ptt
gpio write 27 1 # tx LED
timeout 3 direwolf -c /home/pi/CubeSatSim/direwolf/direwolf-transmit-dtmf-aprs.conf
gpio write 27 0 # tx LED
gpio write 28 1 #ptt
echo "Transmit stop"
echo "Resuming command and control"
sudo systemctl start command
else
STRING="AMSAT-11>APCSS:=3901.40N\07704.39WShi hi MODE=a"
sudo rm /home/pi/CubeSatSim/t.txt
echo $STRING > /home/pi/CubeSatSim/t.txt
echo
echo -n "Sending APRS packet to change mode to APRS"
echo $STRING
sudo touch /home/pi/CubeSatSim/ready
sleep 5
sudo touch /home/pi/CubeSatSim/ready
sleep 5
fi
exit
}

Loading…
Cancel
Save

Powered by TurnKey Linux.