From 11c09b8455cc18f8b644ce6af882d883dc0ef1b9 Mon Sep 17 00:00:00 2001 From: ismagom Date: Mon, 15 Jun 2015 13:48:13 +0200 Subject: [PATCH] Reduced UHD send/recv buffer to reduce Late packets --- srslte/lib/cuhd/src/cuhd_imp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srslte/lib/cuhd/src/cuhd_imp.cpp b/srslte/lib/cuhd/src/cuhd_imp.cpp index 97d31aec7..00548bcc9 100644 --- a/srslte/lib/cuhd/src/cuhd_imp.cpp +++ b/srslte/lib/cuhd/src/cuhd_imp.cpp @@ -162,7 +162,7 @@ int cuhd_open_(char *args, void **h, bool create_thread_gain, bool tx_gain_same_ { cuhd_handler *handler = new cuhd_handler(); std::string _args = std::string(args); - handler->usrp = uhd::usrp::multi_usrp::make(_args + ", master_clock_rate=30720000, num_recv_frames=64"); + handler->usrp = uhd::usrp::multi_usrp::make(_args + ", master_clock_rate=30720000, num_recv_frames=64, num_send_frames=32"); // handler->usrp = uhd::usrp::multi_usrp::make(_args + ", master_clock_rate=50000000" + ", num_recv_frames=512"); handler->usrp->set_clock_source("internal");