From 2efb60ecb0f26525b7280e83605f3466149dd0dd Mon Sep 17 00:00:00 2001 From: Ed Gonzalez Date: Thu, 20 Jun 2019 13:58:29 -0500 Subject: [PATCH] Timing debug newline and dashes --- DSP_API/ThumbDV/thumbDV.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/DSP_API/ThumbDV/thumbDV.c b/DSP_API/ThumbDV/thumbDV.c index 591ea08..52df991 100644 --- a/DSP_API/ThumbDV/thumbDV.c +++ b/DSP_API/ThumbDV/thumbDV.c @@ -291,7 +291,6 @@ static int thumbDV_writeSerial( FT_HANDLE handle , unsigned char * buffer, uint3 struct timespec time; - if ( handle != NULL ) { clock_gettime(CLOCK_MONOTONIC, &time); @@ -319,7 +318,7 @@ static int thumbDV_writeSerial( FT_HANDLE handle , unsigned char * buffer, uint3 } if ( count++ % 100 == 0) - output("Min: %d Max: %d Avg: %.1f", min, max, avg); + output("------------------------------------------- Min: %d Max: %d Avg: %.1f\n", min, max, avg); return status; }