From dc41240106345486b5f730e7ff00f13f52cb5130 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Fri, 27 Jul 2018 14:45:17 +0200 Subject: [PATCH] increase UHD tx timeout to 1.0 --- lib/src/phy/rf/rf_uhd_imp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/phy/rf/rf_uhd_imp.c b/lib/src/phy/rf/rf_uhd_imp.c index c308a98d9..202b47b8d 100644 --- a/lib/src/phy/rf/rf_uhd_imp.c +++ b/lib/src/phy/rf/rf_uhd_imp.c @@ -913,7 +913,7 @@ int rf_uhd_send_timed_multi(void *h, buffs_ptr[i] = buff; } uhd_error error = uhd_tx_streamer_send(handler->tx_stream, buffs_ptr, - tx_samples, &handler->tx_md, 0.5, &txd_samples); + tx_samples, &handler->tx_md, 1.0, &txd_samples); if (error) { fprintf(stderr, "Error sending to UHD: %d\n", error); goto unlock;