From c9df66b0ce71f1b5835ebf86d286028e188e6f4a Mon Sep 17 00:00:00 2001 From: Hayley Date: Thu, 11 Jul 2019 14:38:26 -0500 Subject: [PATCH] Added usleep to thumbDV write This allowed the TX to modulate; however, still recieving reset packets in TX and RX mode --- DSP_API/ThumbDV/thumbDV.c | 1 + 1 file changed, 1 insertion(+) diff --git a/DSP_API/ThumbDV/thumbDV.c b/DSP_API/ThumbDV/thumbDV.c index 81086a0..3f23711 100644 --- a/DSP_API/ThumbDV/thumbDV.c +++ b/DSP_API/ThumbDV/thumbDV.c @@ -294,6 +294,7 @@ static int thumbDV_writeSerial( FT_HANDLE handle , unsigned char * buffer, uint3 { //FT_SetRts(handle); status = FT_Write(handle, buffer, bytes, &written); + usleep(100); if ( status != FT_OK || written != bytes ) { output( ANSI_RED "Could not write to serial port. status = %d\n", status );