Added usleep to thumbDV write

This allowed the TX to modulate; however, still recieving reset packets in TX and RX mode
This commit is contained in:
Hayley 2019-07-11 14:38:26 -05:00
parent 60063a75b6
commit c9df66b0ce

View file

@ -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 );