From f958913b9d4d7c098b7f30a7f0a7396086dbd4cf Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Tue, 22 Jun 2021 08:17:55 -0400 Subject: [PATCH] removed printf --- afsk/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/afsk/main.c b/afsk/main.c index b03e6331..50f67a33 100644 --- a/afsk/main.c +++ b/afsk/main.c @@ -641,10 +641,10 @@ int main(int argc, char * argv[]) { fscanf(uptime_file, "%f", & uptime_sec); uptime = (int) (uptime_sec + 0.5); - printf("Uptime sec: %f \n", uptime_sec); - #ifdef DEBUG_LOGGING +// printf("Uptime sec: %f \n", uptime_sec); +// #ifdef DEBUG_LOGGING printf("INFO: Reset Count: %d Uptime since Reset: %ld \n", reset_count, uptime); - #endif +// #endif fclose(uptime_file); printf("++++ Loop time: %5.3f sec +++++\n", (millis() - loopTime)/1000.0);