From acaa90f690b68a26c51d12a9e0a679f6e130f9bd Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 8 Feb 2025 10:56:58 -0500 Subject: [PATCH] Update transmit.py remove -c AMSAT --- transmit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transmit.py b/transmit.py index 3085ce59..043ee458 100644 --- a/transmit.py +++ b/transmit.py @@ -826,7 +826,7 @@ if __name__ == "__main__": camera_photo() ## system("raspistill -o /home/pi/CubeSatSim/camera_out.jpg -w 320 -h 256") # > /dev/null 2>&1") ## print("Photo taken") - system("/home/pi/ssdv/ssdv -e -n -c AMSAT -i " + str(image_id) + " -q 3 -J /home/pi/CubeSatSim/camera_out.jpg /home/pi/CubeSatSim/image_file.bin") + system("/home/pi/ssdv/ssdv -e -n -i " + str(image_id) + " -q 3 -J /home/pi/CubeSatSim/camera_out.jpg /home/pi/CubeSatSim/image_file.bin") print("image_id: " + str(image_id) + "\n") image_id = ( image_id + 1 ) % 256 print("new image_id: " + str(image_id) + "\n")