From 9e7d80c26fc3da65c033c8f5a71629d8683ad7ed Mon Sep 17 00:00:00 2001 From: ismagom Date: Sun, 1 Nov 2015 00:13:03 +0100 Subject: [PATCH] Removed buffer size from UHD args --- 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 03797c71a..35f33fa28 100644 --- a/srslte/lib/cuhd/src/cuhd_imp.cpp +++ b/srslte/lib/cuhd/src/cuhd_imp.cpp @@ -222,7 +222,7 @@ int cuhd_open_(char *args, void **h, bool create_thread_gain, bool tx_gain_same_ uhd::set_thread_priority_safe(); cuhd_handler *handler = new cuhd_handler(); std::string _args = std::string(args); - handler->usrp = uhd::usrp::multi_usrp::make(_args + ", recv_frame_size=7696,num_recv_frames=64,send_frame_size=7696,num_send_frames=64"); + handler->usrp = uhd::usrp::multi_usrp::make(_args); handler->usrp->set_clock_source("internal"); std::string otw, cpu;