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