From adfb3bbd51bd268babb29dc7a252bd0cee23cb44 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Mon, 28 Nov 2022 17:04:19 -0500 Subject: [PATCH] revert CW -> FSK mode change exception --- cubesatsim/cubesatsim.ino | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index 5de4af51..af1b55f6 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -333,7 +333,8 @@ void loop() { mode = new_mode; // change modes if button pressed write_mode(); - if ((mode == BPSK) || ((new_mode == FSK) && (old_mode == CW))) { +// if ((mode == BPSK) || ((new_mode == FSK) && (old_mode == CW))) { + if (mode == BPSK) { config_telem(); // run this before cw only for BPSK mode config_done = true; }