From 2308e5b6f00289c4046ea6b0d9155006c2d6f3e0 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sat, 5 Sep 2020 15:21:37 -0400 Subject: [PATCH] removed Parities and voltage and current logging --- afsk/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/afsk/main.c b/afsk/main.c index f3822f6e..e928b86c 100644 --- a/afsk/main.c +++ b/afsk/main.c @@ -584,7 +584,7 @@ for (int j = 0; j < frameCnt; j++) { voltage[count1] = atof(token); #ifdef DEBUG_LOGGING - printf("voltage: %f ", voltage[count1]); +// printf("voltage: %f ", voltage[count1]); #endif token = strtok(NULL, space); if (token != NULL) @@ -593,7 +593,7 @@ for (int j = 0; j < frameCnt; j++) if ((current[count1] < 0) && (current[count1] > -0.5)) current[count1] *= (-1.0); #ifdef DEBUG_LOGGING - printf("current: %f\n", current[count1]); +// printf("current: %f\n", current[count1]); #endif token = strtok(NULL, space); } @@ -1164,13 +1164,13 @@ if (payload == ON) #ifdef DEBUG_LOGGING // printf("\nAt end of data8 write, %d ctr1 values written\n\n", ctr1); - +/* printf("Parities "); -// for (int m = 0; m < PARITY_LEN; m++) { for (int m = 0; m < parityLen; m++) { printf("%d ", parities[0][m]); } printf("\n"); +*/ #endif int ctr2 = 0;