From 5b747ae1f7ffa38ed49a935e77f3cf2d7b6c2f97 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sat, 25 Feb 2023 12:40:18 -0500 Subject: [PATCH] only print + if not SSTV, only do serial on interrupt for SSTV and CW modes --- cubesatsim/cubesatsim.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index c9fcfc96..ccc3998e 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -4961,9 +4961,9 @@ void start_clockgen() { } void get_input() { - Serial.print("+"); - - // if (((skip++)%2) == 0) + if (mode != SSTV) + Serial.print("+"); + if ((mode == CW) || (mode == SSTV)) serial_input(); // check for button press