SoapySDR uses time stamps to prevent gaps/overflows in transmit stream

A common option for both UHD and SoapySDR allows to turn off time stamps.
This commit is contained in:
Andreas Eversberg
2021-09-15 09:21:13 +02:00
parent 35ed2d5138
commit 8a1c5a1a5b
7 changed files with 128 additions and 46 deletions

View File

@@ -19,7 +19,7 @@ typedef struct sdr_config {
const char *read_iq_tx_wave;
const char *read_iq_rx_wave;
int swap_links; /* swap DL and UL frequency */
int uhd_tx_timestamps; /* use UHD time stamps */
int timestamps; /* use time stamps when transmitting */
} sdr_config_t;
extern sdr_config_t *sdr_config;