From 3b7d31e39c64e6eab1c98c63703ada88c7711e5e Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 20 Jun 2026 20:36:11 -0400 Subject: [PATCH] Update transmit.py doppler_mode from sim.cfg --- transmit.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/transmit.py b/transmit.py index 14a5bd01..2898ad30 100644 --- a/transmit.py +++ b/transmit.py @@ -695,7 +695,7 @@ if __name__ == "__main__": sim_mode = False sim_config = False hab_mode = False - doppler_mode = True + doppler_mode = False try: file = open("/home/pi/CubeSatSim/sim.cfg") @@ -748,7 +748,12 @@ if __name__ == "__main__": # print(txpl) # print( "{:.0f}".format(txpl)) txpl_value = "{:.0f}".format(txpl) - print(txpl_value) + print(txpl_value) + if len(config) > 11: + if config[11] == 'y' or config[11] == 'yes': + doppler_mode = True + print("Doppler mode is configured.") + print(config) print # print(callsign)