From 8f90da2c41b2a619f7767bbccef23ebdf3a6e76a Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sun, 13 Aug 2023 11:16:43 -0400 Subject: [PATCH] Update config changed to command_tx --- config | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config b/config index 48118e3f..b50dfca2 100755 --- a/config +++ b/config @@ -367,7 +367,7 @@ elif [ "$1" = "-T" ]; then echo echo "Current command state is:" - cat /home/pi/CubeSatSim/command_state + cat /home/pi/CubeSatSim/command_tx echo echo "Do you want to set beacon transmit to ON (y/n) " @@ -375,10 +375,10 @@ elif [ "$1" = "-T" ]; then echo if [ "$reset" = "y" ] || [ "$reset" = "yes" ] ; then - echo "True" > /home/pi/CubeSatSim/command_state + echo "True" > /home/pi/CubeSatSim/command_tx echo "Command state set to True to enable beacon" else - echo "False" > /home/pi/CubeSatSim/command_state + echo "False" > /home/pi/CubeSatSim/command_tx echo "Command state set to False to disable beacon" fi