From a95ecff80dc86c98ac77fd4ecdb2fc7ef028f20a Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Fri, 14 Apr 2023 18:55:57 -0400 Subject: [PATCH] remove prints in check for wifi --- cubesatsim/cubesatsim.ino | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index 74ad13f0..ac51d919 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -129,6 +129,12 @@ void setup() { get_input(); + if (wifi) + Serial.println("\nPico W detected!\n"); + else + Serial.println("\nPico detected!\n"); + + start_clockgen(); EEPROM.begin(512); @@ -3960,11 +3966,11 @@ bool check_for_wifi() { // if (result < 0x100) { if (result < 0x10) { - Serial.println("\nPico W detected!\n"); +// Serial.println("\nPico W detected!\n"); return(true); } else { - Serial.println("\nPico detected!\n"); +// Serial.println("\nPico detected!\n"); return(false); } }