[USRP-users] RFNOC Replay Block

2019-04-17 Thread John Medrano via USRP-users
Hello, We are attempting to run replay_samples_from_file example. We run: replay_samples_from_from_file --freq 1e9 --file ../test.dat The program hangs: Connecting 0/Replay_0 ==> 0/Radio_0 Using streamer args: block_id=0/Replay_0,block_port=0 Replay file size: 65536 bytes (8192 qwords, 1638

Re: [USRP-users] (no subject)

2019-04-17 Thread John Medrano via USRP-users
55 PM John Medrano >>>>> wrote: >>>>> >>>>>> Thank you for the response. >>>>>> >>>>>> I have added to CMakeList.txt: >>>>>> >>>>>> find_library(SLADEW_LIB gnuradio-SLADEW) >>

[USRP-users] Accessing GPS Location Data with Device3

2019-04-16 Thread John Medrano via USRP-users
Hello, Using multi_usrp we were able to access our GPS data on X310 device. Using RFNoc Device3 we can set clock and access time, is there a way to also access GPS data? Our system is written in C++. Please advise. Thank you ___ USRP-users mailing list

Re: [USRP-users] (no subject)

2019-04-09 Thread John Medrano via USRP-users
gt;>>> It compiles fine but I still get same messages on start up. >>>> >>>> Please advise: >>>> John >>>> >>>> >>>> On Wed, Mar 27, 2019 at 3:00 PM Nick Foster >>>> wrote: >>>> >>>>>

Re: [USRP-users] (no subject)

2019-04-08 Thread John Medrano via USRP-users
ther UHD utilities aren't linked against the >>> custom library. This isn't generally a problem since the utilities and >>> examples don't make use of your custom block. >>> >>> Nick >>> >>> On Wed, Mar 27, 2019, 1:26 PM John Med

Re: [USRP-users] (no subject)

2019-03-27 Thread John Medrano via USRP-users
t; block controller. > > uhd_usrp_probe and the other UHD utilities aren't linked against the > custom library. This isn't generally a problem since the utilities and > examples don't make use of your custom block. > > Nick > > On Wed, Mar 27, 2019, 1:26 PM John Me

[USRP-users] (no subject)

2019-03-27 Thread John Medrano via USRP-users
Hello, We have a custom RFNOC block that we have created. When we using GNURadio/Python everything works fine. When follow the examples in uhd/host/examples and generate an executable using C++, we get an error on execution. We noticed that on start up the python program has no issue locating con

[USRP-users] Streaming Data From GNURadio

2018-11-08 Thread John Medrano via USRP-users
Hello, We would like to repeatably stream a fixed number of data points (i.e. 4096 points) at a sample rate of 40 MS/s. The file format is in complex binary. I suspect there are several ways that this can be optimized. If we have a flow graph: FileSource -> UHDRadio or with RFNoc FileSource -

Re: [USRP-users] Building RFNOC UHD on E310

2018-07-05 Thread John Medrano via USRP-users
Hello, On E310 with environment correctly set up, run: uhd_image_downloader (in the instructions, it is assumed that you are not connected to Internet, so an error is expected. Your output should be: UHD_IMAGES_DIR environment variable is set. Default install location: /home/root/newinstall/

Re: [USRP-users] Building RFNOC UHD on E310

2018-07-04 Thread John Medrano via USRP-users
Can you try to specify image on command line. Uhd_usrp_probe --args "fpga=__.bit" Specify rfnoc E310 image. If I remember correctly I had to always specify image. Good luck On Wed, Jul 4, 2018, 1:21 PM Mathieu Vinette wrote: > Thanks John for the quick reply. You’re right, my environme

Re: [USRP-users] Building RFNOC UHD on E310

2018-07-04 Thread John Medrano via USRP-users
Hello, I have used the first method multiple times with no issues. Did you issue command or is your setup_env.sh file correctly configured. You must run every time you get a new shell from E310: source ./setup_env.sh You may still be pointing at default version of GNU Radio installed on E310.

Re: [USRP-users] rfnoc loopback

2017-12-15 Thread John Medrano via USRP-users
Thank you for the code. I have an E310 and we are using latest version of RFNOC Development and these functions return an error: stream_cmd=uhd.stream_cmd_t(uhd.stream_cmd_t.STREAM_MODE_START_CONTINUOUS) #self.uhd_rfnoc_streamer_radio_0.issue_stream_cmd(stream_cmd) self.uhd_rfnoc_

Re: [USRP-users] Siggen not working in E310

2017-12-01 Thread John Medrano via USRP-users
like block which will hop frequencies. I am interested in any >> design considerations, thoughts, or advice on the design of the block. If >> it can be general enough it can be pushed to upstream. >> >> On Mon, Sep 25, 2017 at 18:04 John Medrano via USRP-users < >&g

Re: [USRP-users] RFNoC OOT Module Error with FPGA Image

2017-11-30 Thread John Medrano via USRP-users
Hello Jose, Based on the information you have posted I suspect it is an error in you $ROOTDIR/rfnoc/blocks/$MODULE_NAME.xml file. You may be reading a value before it has been initialized, look at arguments section and make sure you are not reading a value before it has been written. Good luck.

[USRP-users] RFNOC SIGGEN->DUC->RADIO in CPP

2017-11-08 Thread John Medrano via USRP-users
Hello, We have implemented in Python and it worked. Now we are trying to implement the following code in CPP. We would like to directly communicate with RFNOC in CPP. We have generated the following code to implement RFNOC SIGGEN->DUC->RADIO. When we enable SIGGEN the TX/RX will toggle, but we g

[USRP-users] No output from OOT RFNOC Module

2017-10-11 Thread John Medrano via USRP-users
We are in process of debugging an out of tree module that we created. It is a source object that generates a given sequence. We have compiled and loaded in our X310 device and all looks good. But when we run it, we get no output. Below is some of the output from the device. Two questions: 1. Wh

Re: [USRP-users] Error in RFNoC grc with OOT module

2017-10-06 Thread John Medrano via USRP-users
Hello, We found two errors in the file: 1. samp_rate parameter is not defined. 2. There is an indention error. The lines with "self.$(id).set_arg("spp", $spp)" should not have leading spaces. Thanks, John On Thu, Oct 5, 2017 at 11:38 AM, Avila, Jose A via USRP-users < usrp-users@lists.ettus.com

Re: [USRP-users] Error building OOT RFNOC Module with dependencies

2017-10-02 Thread John Medrano via USRP-users
sers < >>> usrp-users@lists.ettus.com> wrote: >>> >>>> John, will this be open source? We are also looking at modifying the >>>> SIGGEN to add functionality. From the name it seems you are transmitting on >>>> two channels. We would need

Re: [USRP-users] Error building OOT RFNOC Module with dependencies

2017-09-28 Thread John Medrano via USRP-users
re also looking at modifying the >> SIGGEN to add functionality. From the name it seems you are transmitting on >> two channels. We would need more, but the concept seems similar. >> On Wed, Sep 27, 2017 at 18:10 John Medrano via USRP-users < >> usrp-users@lists.ettus.com

[USRP-users] Error building OOT RFNOC Module with dependencies

2017-09-27 Thread John Medrano via USRP-users
Hello, We have modified sig_gen module to create an OOT module and we are attempting to build image. But we receive an error while trying to build the test bench. sig_gen relies on modules cadd, cordic_rotater, and axi_clip_complex. As seen below, it is unable to find these modules while building

[USRP-users] Siggen not working in E310

2017-09-25 Thread John Medrano via USRP-users
Hello, I have been working on getting Siggen working under E310. I built RFNOC image with siggen for E310. I have been able to use that image to generate a signal from RFNOC_SIGGEN -> HOST, but when I try to rung RFNOC_SIGGEN -> RFNOC_DUC -> RFNOC_RADIO I received an error. The error I received go