mirror of
https://github.com/n5ac/smartsdr-dsp.git
synced 2025-12-06 03:01:59 +01:00
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:
parent
ddf0deabf6
commit
10502b6b8c
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue