From 0553a21f8ed5ac37553bc7dd5baa8ea983db2646 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Mon, 28 Nov 2022 16:12:52 -0500 Subject: [PATCH] config_telem in usual place for all modes except BPSK --- cubesatsim/cubesatsim.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index d326a1a3..cf8fb86b 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -331,14 +331,14 @@ void loop() { write_mode(); if (mode == BPSK) - config_telem(); + config_telem(); // run this before cw only for BPSK mode if (new_mode != CW) transmit_callsign(callsign); sleep(0.5); - if (mode == FSK) - config_telem(); + if (mode != BPSK) + config_telem(); // run this here for all other modes config_radio(); if ((mode == FSK) || (mode == BPSK)) {