You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CubeSatSim/fox-demo.sh

18 lines
489 B

#!/bin/bash
echo -e "\nDemo of CubeSatSim sends FSK, BPSK, and AFSK telemetry alternately at 434.9 MHz continuously\n\n"
sudo killall -9 rpitx
sudo killall -9 sendiq
sudo fuser -k 8080/tcp
while true; do
sleep 1;
echo -e "\n Changing mode ********************************************************************************\n\n"
timeout 25 /home/pi/CubeSatSim/radioafsk c 3
sudo killall -9 rpitx
sudo killall -9 sendiq
sudo fuser -k 8080/tcp
done

Powered by TurnKey Linux.