[USRP-users] FPGA Build problem

2017-08-02 Thread Nauman Iqbal via USRP-users
Hi, I am getting this error while I am trying to build the project from makefile. I have vivado paths already set. source /home/workspace/fpga/usrp3/tools/scripts/viv_generate_ip.tcl # set xci_file $::env(XCI_FILE) ; # set part_name$::env(PART_NAME) ;

[USRP-users] what do fc64 and sc16 stand for?

2017-08-02 Thread Ali The GREAT! via USRP-users
Hi all, I wonder what fc64, fc32, sc16 and sc8 stand for. I know that fc64 = complex and so on. I just want to know the abbreviations. Thanks love ali ___ USRP-users mailing list USRP-users@lists.ettus.com http://lists.ettus.com/mailman/listinfo/usrp-use

Re: [USRP-users] what do fc64 and sc16 stand for?

2017-08-02 Thread Claudio Cicconetti via USRP-users
I guess it is: f = float s = signed integer c = complex Claudio On 08/02/2017 12:47 PM, Ali The GREAT! via USRP-users wrote: > Hi all, > I wonder what fc64, fc32, sc16 and sc8 stand for. > I know that fc64 = complex and so on. > I just want to know the abbreviations. > Thanks > > love > ali >

Re: [USRP-users] what do fc64 and sc16 stand for?

2017-08-02 Thread Marcus Müller via USRP-users
Exactly! And the numbers behind are the bits per I and Q component, each. So a single fc32 sample has 64 bit. On 2 August 2017 1:32:23 PM GMT+02:00, Claudio Cicconetti via USRP-users wrote: >I guess it is: > >f = float >s = signed integer >c = complex > >Claudio > >On 08/02/2017 12:47 PM, Ali T

Re: [USRP-users] FPGA Build problem

2017-08-02 Thread EJ Kreinar via USRP-users
Hi Nauman, I'm guessing you're building FPGA for the X300 series.. Typically this is a problem with setting the environment correctly. In the build directory (uhd-fpga/usrp3/top/x300), first run "source setupenv.sh". This calls uhd-fpga/usrp3/tools/scripts/setupenv_base.sh, which populates the FP

Re: [USRP-users] PPS sync with USRP E310 timeout error

2017-08-02 Thread Derek Kozel via USRP-users
Hello Daniel, There is no check in your code to confirm that the time is correctly set. The 1PPS signal should be a square wave rather than a sine wave. It is a logic signal rather than an RF one and the sync port is designed to handle it. http://files.ettus.com/manual/page_usrp_e3x0.html#e3x0_hw_

Re: [USRP-users] Trying to verify Rx MIMO operation of x310

2017-08-02 Thread Derek Kozel via USRP-users
Hi Mark, I've added back on the list, it's useful to keep everyone in sync with progress. The WX FFT only takes one input but the QT Frequency Sync has a configurable number of inputs. In general the QT GUIs are being promoted over WX. Regards, Derek On Tue, Aug 1, 2017 at 7:40 PM, Mark Koenig

Re: [USRP-users] How Do I get a py File Transferred Over to The E310

2017-08-02 Thread Michael Don via USRP-users
What I did was to set up an Ethernet connection and use winSCP for file transfer. https://files.ettus.com/manual/page_usrp_e3x0.html - setting up ethernet https://winscp.net/eng/index.php - winSCP -Mike On Tue, Aug 1, 2017 at 2:31 PM, Matheou, Konstantin J. (GRC-LCI0)[ZIN TECHNOLOGIES INC] via U

Re: [USRP-users] How Do I get a py File Transferred Over to The E310

2017-08-02 Thread Derek Kozel via USRP-users
Hi Konstantin, Mike's solution is one of the common answers. Mounting a network share or remote file system are nice to streamline the process. Our application note on developing with the E310 has an example of using sshfs to mount a directory from a host computer onto the E310. https://kb.ettus.c

Re: [USRP-users] PPS sync with USRP E310 timeout error

2017-08-02 Thread Cho, Daniel J (332C) via USRP-users
Hello Derek, I thought the “set_time_unknown_pps” checks to confirm that the time is correctly set? If that doesn’t, how do I know that the sync is set correctly without using a spectrum analyzer? Thanks From: Derek Kozel [mailto:derek.ko...@ettus.com] Sent: Wednesday, August 2, 2017 7:33 AM T

Re: [USRP-users] PPS sync with USRP E310 timeout error

2017-08-02 Thread Derek Kozel via USRP-users
Hi, Sorry, I spoke poorly there. set_time_unknown_pps will fail if it does not see a 1PPS edge within a 1+epsilon second window. However, because you were using a sine wave the exact time that the "edge" of the pulse could vary. When distributing a time reference a fast rising edge is key to getti

Re: [USRP-users] Using Aurora enabled FPGA Image

2017-08-02 Thread Nauman Iqbal via USRP-users
Hi, I am trying to do the following, 1) Is it possible to use one of the HA/XA firmwares on the X310 in order to allow UHD configuration via the ethernet SFP+ port and streaming via the aurora SFP+ port directly to an FPGA which has aurora IP already working? 2) If so, then is the process s

[USRP-users] doubts about burst tranmission using tag SOB and EOB

2017-08-02 Thread Yang Liu via USRP-users
Dear all, I tried to achieve burst transmission on usrp X310, the brief tx flowgraph is in the below: message_burst_source -> signal processing blocks --> usrp_sink New message will be inserted into the message queue of message_burst_source. Since message_burst_source will attach SOB and EOB ta

Re: [USRP-users] Brench Maint and Master of UHD

2017-08-02 Thread Nate Temple via USRP-users
Hi Daniele, Generally speaking, 'maint' should be stable. If you need an absolutely stable version, it is recommended to use a tagged release, such as 'release_003_010_002_000' (UHD 3.10.2.0) or 'release_003_009_007' (UHD 3.9.7). We perform release testing on every tagged version of UHD. Unle

[USRP-users] Support with UHD C++ API

2017-08-02 Thread Snehasish Kar via USRP-users
Hello I am trying to receive the entire 25MHz gsm signal using usrp x310 at an sample rate of 50MSPS, which i need to receive in the host and send to the GPU for demodulation. Please help me how to implement this with minimum data loss. BR Snehasish _

Re: [USRP-users] Support with UHD C++ API

2017-08-02 Thread Derek Kozel via USRP-users
Hello Snehasish, The UHD examples contain all the code to receive a stream of samples at that rate. What have you tried? We may be able to help better if you explain what is not working. 50 MS/s is not too high of a load so most recent computers should have no problem receiving that much data over

[USRP-users] C++ --> GRC(Socket PDU ---> QT Frequency GUI)

2017-08-02 Thread Jack White via USRP-users
Hi, I've been having some difficulty getting reliable data flow from my USRP X310 with a GRC flowgraph, so I'm trying out writing my system in C++ with the UHD driver API. My first step has been to retrieve samples from the X310, forward them to a UDP port and then pick them up with a GRC Socket P

[USRP-users] RFNoC:Delay block?

2017-08-02 Thread Dixon, James L via USRP-users
Hi, I am wondering if there is some type of variable delay block available in RFNoC. I see that there is a Delay block available in gnu-radio, but I need it to be in the FPGA. Thanks, Jim ___ USRP-users mailing list USRP-users@lists.ettus.com http:

Re: [USRP-users] Support with UHD C++ API

2017-08-02 Thread Karan Suri via USRP-users
For minimum data loss at 50MSps, you have to use a 10G cable , Data rate with 1G is limited to ~33 MSps which rounds off to 28 MSps (integral decimation). Karan Suri University of Michigan On Aug 2, 2017 3:56 PM, "Derek Kozel via USRP-users" < usrp-users@lists.ettus.com> wrote: > Hello Snehasish

Re: [USRP-users] C++ --> GRC(Socket PDU ---> QT Frequency GUI)

2017-08-02 Thread Marcus Müller via USRP-users
Hi Jack, PDUs are not just samples one after the other – they contain metadata. I can't really imagine what your flow graph looks like, so I'd be grateful for a screenshot (File->Screen Capture). Anyway, there'd be no obvious reason your UDP detour would make things faster – maybe the intermediat

[USRP-users] N210 - pure (real) 50MHz sine output

2017-08-02 Thread Alex Pesch via USRP-users
​Hello - I'm attempting to use my N210 in a somewhat unconventional application that requires a pure (real) sine wave output, with some frequency modulation around 50MHz. This signal will be used to resonate a physical device within a small band around 50MHz. H​owever, I'm finding when the center

Re: [USRP-users] RFNoC:Delay block?

2017-08-02 Thread Nick Foster via USRP-users
I made one for a project, but can't share it as it's customer work. It's a little bit tricky and I never got it 100% right, but it works well enough for what it needs to do. The tricky parts are preserving or reconstituting packet boundaries, and being able to advance and delay the stream without b

Re: [USRP-users] N210 - pure (real) 50MHz sine output

2017-08-02 Thread Marcus Müller via USRP-users
Hi Alex, your application sounds cool :) So, amplitude stability over ten seconds isn't usually a design goal – how strong are these amplitude modulations? Also, I'd have a standard visualization that I'd usually share here: offset tuning $f_\text{RF}$ is the frequency of the actual (physical)

[USRP-users] Using both TX/RX and RX2 ports on the same daughter board to receive signal simultaneously

2017-08-02 Thread Karan Suri via USRP-users
Hi, I'm trying to using both TX/RX and RX2 ports on the same daughter board of X310 to receive signal at the same time. On the host side, I tried to create a new recv_to_file thread inside the main thread(which will execute another recv_to_file). However, the terminal will show the error "0/Radio_0

Re: [USRP-users] Using both TX/RX and RX2 ports on the same daughter board to receive signal simultaneously

2017-08-02 Thread Nate Temple via USRP-users
Hi Yue, There is only one RX path, and it is only possible to RX via TX/RX or RX2 at any given time with the CBX/UBX/SBX/WBX daughterboards. The only exception is the TwinRX, which has two RX channels (and no TX), that run at 100e6 each. Regards, Nate Temple > On Aug 2, 2017, at 9:04 PM, Kara