From d2ada3faebc4a53a65514e35910be7bdee0b2c2c Mon Sep 17 00:00:00 2001 From: Hayley Date: Thu, 11 Jul 2019 15:14:29 -0500 Subject: [PATCH] Increased usleep in write in TX the dongle is only sending reset packets when speech is detected. Also, in TX, signal is not demodulated when speaking into mic; otherwise it is demodulated. Still only reset packets in RX. --- DSP_API/ThumbDV/thumbDV.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DSP_API/ThumbDV/thumbDV.c b/DSP_API/ThumbDV/thumbDV.c index 3f23711..70d93b2 100644 --- a/DSP_API/ThumbDV/thumbDV.c +++ b/DSP_API/ThumbDV/thumbDV.c @@ -294,7 +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); + usleep(10000); if ( status != FT_OK || written != bytes ) { output( ANSI_RED "Could not write to serial port. status = %d\n", status );