Do not send time_spec in between the burst. X300 does not like it (#1583)

This commit is contained in:
Ismael Gomez 2020-08-26 11:21:29 +02:00 committed by GitHub
parent a4835dd2c8
commit 59b9125d4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1332,7 +1332,7 @@ int rf_uhd_send_timed_multi(void* h,
// Set start of burst. Time spec only for the first packet in the burst
md.start_of_burst = is_start_of_burst;
md.has_time_spec = is_start_of_burst or has_time_spec;
md.has_time_spec = is_start_of_burst and has_time_spec;
// middle packets are never end of burst, last one as defined
if (nsamples - n > (int)tx_samples) {