Took out usleep in thumbdv write

the usleep was only to help with TX on the faster baud but didnt have any significant improvments
This commit is contained in:
Hayley 2019-07-26 09:18:43 -05:00
parent ddf0deabf6
commit 10502b6b8c

View file

@ -294,7 +294,6 @@ 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 );