From 7ec04bf71588a4ebff69a6c9cd0959afafcfb62b Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sat, 15 Apr 2023 14:52:40 -0400 Subject: [PATCH] in config_radio, don't do clock start if cw mode --- cubesatsim/cubesatsim.ino | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index b537666e..0247b248 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -2233,7 +2233,8 @@ void config_radio() if (sr_frs_present) digitalWrite(PD_PIN, HIGH); // Enable SR_FRS else { - if (!clockgen_present) +// if (!clockgen_present) + if (mode != CW) start_clockgen(); if (clockgen_present) { if (clockgen.setClockFSK(frequency_offset)) {