From 10502b6b8c78e34adc8479e71732deee92985eb1 Mon Sep 17 00:00:00 2001 From: Hayley Date: Fri, 26 Jul 2019 09:18:43 -0500 Subject: [PATCH] Took out usleep in thumbdv write the usleep was only to help with TX on the faster baud but didnt have any significant improvments --- 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 7c81aa2..9a7b3bd 100644 --- a/DSP_API/ThumbDV/thumbDV.c +++ b/DSP_API/ThumbDV/thumbDV.c @@ -294,8 +294,7 @@ static int thumbDV_writeSerial( FT_HANDLE handle , unsigned char * buffer, uint3 { //FT_SetRts(handle); status = FT_Write(handle, buffer, bytes, &written); - usleep(10000); - + if ( status != FT_OK || written != bytes ) { output( ANSI_RED "Could not write to serial port. status = %d\n", status ); return status;