[USRP-users] building a deb on Ubuntu

2022-06-07 Thread Tillson, Bob (US) via USRP-users
Is there a cmake target to build a deb on Ubuntu or is the packaging into a deb a post process after cmake? Thanks, ___ USRP-users mailing list -- usrp-users@lists.ettus.com To unsubscribe send an email to usrp-users-le...@lists.ettus.com

[USRP-users] Re: DDC and DUC timed command queue depth

2022-06-07 Thread ri28856
Rob Kossler wrote: > Would it make sense to separate into 2 threads where one thread sends the > tuning commands and the other sends the Tx samples? > Rob Yes, and that’s what I do on the real system. The code snippet I posted was a test harness to see if my FPGA changes increased the queue size

[USRP-users] Re: DDC and DUC timed command queue depth

2022-06-07 Thread Wade Fife
I'm not very familiar with how those tune commands get translated into register transactions, but one thought I had is that it may also be issuing timed commands to the radio. If so, you also might need to make the radio's control FIFO deeper by updating the "512" number to the depth you need. It

[USRP-users] Re: DDC and DUC timed command queue depth

2022-06-07 Thread ri28856
If it helps at all the exact tune request I’m using is as follows: ``` uhd::tune_request_t tmp; tmp.dsp_freq_policy = uhd::tune_request_t::POLICY_MANUAL; tmp.rf_freq_policy = uhd::tune_request_t::POLICY_MANUAL; tmp.rf_freq = rf_freq; tmp.target_freq = min_fr

[USRP-users] Re: DDC and DUC timed command queue depth

2022-06-07 Thread ri28856
Wade Fife wrote: > I'm not very familiar with how those tune commands get translated into > register transactions, but one thought I had is that it may also be issuing > timed commands to the radio. If so, you also might need to make the radio's > control FIFO deeper by updating the "512" number t

[USRP-users] Re: DDC and DUC timed command queue depth

2022-06-07 Thread Marcus D. Leech
On 2022-06-07 11:24, ri28...@mit.edu wrote: Wade Fife wrote: I'm not very familiar with how those tune commands get translated into register transactions, but one thought I had is that it may also be issuing timed commands to the radio. If so, you also might need to make the rad

[USRP-users] Error while compiling rx_samples_to_udp.cpp

2022-06-07 Thread Marcin Puchlik
Hi, While compiling this example I got the error: *Creating the usrp device with: ...[INFO] [UHD] linux; GNU C++ version 9.4.0; Boost_107100; UHD_4.2.0.0-0ubuntu1~focal1[INFO] [B200] Loading firmwa

[USRP-users] Re: Error while compiling rx_samples_to_udp.cpp

2022-06-07 Thread Marcin Puchlik
Sorry, while running :) wt., 7 cze 2022 o 18:44 Marcin Puchlik napisał(a): > Hi, > While compiling this > > example > I got the error: > > > > > > > > > > > > > > > > *Creating the usrp device with: ...[INFO

[USRP-users] Re: DDC and DUC timed command queue depth

2022-06-07 Thread Wade Fife
Sorry, here's the location for 3.13. In this case it's a log2 number again, so 8 means 256 words deep, 9 means 512 words deep, etc. https://github.com/EttusResearch/fpga/blob/UHD-3.13/usrp3/lib/radio/noc_block_radio_core.v#L60 Wade On Tue, Jun 7, 2022 at 10:28 AM Marcus D. Leech wrote: > On 2