From 96437b8c1ffcad577030ea35967c84027dac5b61 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Mon, 1 Aug 2022 09:45:20 -0400 Subject: [PATCH] commented out a FSK --- cubesatsim/cubesatsim.ino | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index c433c5c5..c92e33ab 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -153,10 +153,13 @@ void loop() { else if (mode == AFSK) { send_packet(); - } else if (mode == SSTV) + } + else if (mode == SSTV) { Serial.println("\nSending SSTV image!"); - } + } + else + Serial.println("Unknown mode!"); // while ((millis() - sampleTime) < ((unsigned int)samplePeriod)) // - 250)) // was 250 100 while ((millis() - sampleTime) < ((unsigned int)frameTime)) // - 250)) // was 250 100 @@ -3003,7 +3006,7 @@ void process_bootsel() { if ((!BOOTSEL) && (release == FALSE)) { Serial.println("BOOTSEL: Switch to FSK"); release = TRUE; - new_mode = FSK; +// new_mode = FSK; // setup(); }