[USRP-users] rfnoc modtool for GR 3.9 UHD 4101+

2021-08-24 Thread Boris Marjanovic
Hi, I'm looking to move a block to rfnoc implementation. We use GR3.9 and UHD 4.1.0.1 (hopefully even newer once B200 issues are rectified) Going through github and ettus knowledge base, there does not seem to be support for GR 3.9. The most recent branches are master (expected 🙂) and maint-3.8-UH

[USRP-users] Re: Running rfnoc replay example on n310

2021-08-24 Thread Jonathon Pendlum
Hi Tellrell, Do not use the Xilinx SDK, only the Yocto one, i.e. /usr/local/share/uhd/images/y/sysroots/cortexa9t2hf-neon-oe-linux-gnueabi You need to source the "environment-setup-cortexa9t2hf-neon-oe-linux-gnueabi" file before cross compiling. If you use cmake with building your application, yo

[USRP-users] Re: setting lenght of fft RFNoC UHD 4

2021-08-24 Thread Jonathon Pendlum
Hi Ivan, I saw your other post. I think setting the SPP via stream args doesn't work correctly. Try this instead: spp = 1024 radio_block.set_properties(f"spp:0={spp}") Also, if you are streaming over Ethernet (i.e. network mode), make sure your MTU is set to 8000 on both the host and the E310.

[USRP-users] Re: setting lenght of fft RFNoC UHD 4

2021-08-24 Thread Jonathon Pendlum
Hello Ivan, Are you steaming into the ARM processor / PS or are you streaming over the network? Are you running a UHD app or using GNU Radio? Jonathon On Tue, Aug 24, 2021 at 5:40 PM Ivan Zahartchuk wrote: > Hi, > I try to set length of fft = 512 or 1024 for USRP E310 (RFNoC UHD 4), but > whe

[USRP-users] Re: Reading E310 temperatures

2021-08-24 Thread Rich Gopstein
Thanks for both suggestions. I installed lm_sensors, and it seems to find two of the temp sensors. Not sure which two, though: # sensors e31x_battery-virtual-0 Adapter: Virtual device temp1: -273.0°C e000b000ethernet00-mdio-0 Adapter: MDIO adapter temp1:+28.0°C (crit = +1

[USRP-users] Re: Reading E310 temperatures

2021-08-24 Thread aneesh patel via USRP-users
Correction-- missed you said "outside of gnuradio." Basically everything below minus gnuradio. if the sensors_lm package is available (as marcus stated), parse that output or just manually parse the /sys or /proc (forgot which one) file descriptor for the sensor when you find it.  Best of luck!

[USRP-users] Re: Reading E310 temperatures

2021-08-24 Thread aneesh patel via USRP-users
Concur on verifying-- that being said I know at least one of them (possibly CPU) was available on the SG3 image a while back (I'm sure nothing much has changed there but its been a while). Then is would be very simple to write a simple custom GNURadio block (like basically a command line script

[USRP-users] Re: Mender update error

2021-08-24 Thread Minutolo, Lorenzo
Thanks for the reply, I'll go ahead and flash the whole SD. Lorenzo From: Rob Kossler Sent: Monday, August 23, 2021 6:51 PM To: Minutolo, Lorenzo Cc: usrp-users@lists.ettus.com Subject: Re: [USRP-users] Mender update error Hi Lorenzo, Do you have the ability t

[USRP-users] Re: setting lenght of fft RFNoC UHD 4

2021-08-24 Thread Marcus D Leech
How are you doing the steaming? Over what channel? Directly into the E310? I don’t know what the MTU is of that channel but it would not surprise me if it can’t handle larger packets. Sent from my iPhone > On Aug 24, 2021, at 5:40 PM, Ivan Zahartchuk wrote: > >  > Hi, > I try to set length

[USRP-users] setting lenght of fft RFNoC UHD 4

2021-08-24 Thread Ivan Zahartchuk
Hi, I try to set length of fft = 512 or 1024 for USRP E310 (RFNoC UHD 4), but when the value is set I haven`t received the data. When the fft = 256 it`s work fine. My graph looks like this: 0/Radio#0:0==>0/FFT#0:0 0/FFT#0:0==>0/SEP#0:0 Setup of my SEP is: stream_endpoints: ep0:

[USRP-users] Re: Reading E310 temperatures

2021-08-24 Thread Marcus D Leech
My approach would be to see if any of those sensors are understood by the kernel lm_sensors subsystem. Sent from my iPhone > On Aug 24, 2021, at 5:12 PM, Rich Gopstein wrote: > >  > I'm helping out on a project that's using an E310. Someone else is doing the > GNURadio code, but I need to

[USRP-users] Reading E310 temperatures

2021-08-24 Thread Rich Gopstein
I'm helping out on a project that's using an E310. Someone else is doing the GNURadio code, but I need to read the temperature values periodically (once every few seconds). My code will not be running in GNURadio. It looks like there are three temp sensors (Zynq, ADT7408, and the AD9361). What

[USRP-users] Re: Running rfnoc replay example on n310

2021-08-24 Thread Tellrell White via USRP-users
I'm trying to compile the source code using SDK 2019.1. I'm pointing the the SDK project to the directory for sysroot and also to the directory for my linux toolchain which are the following /usr/local/share/uhd/images/y/sysroots/cortexa9t2hf-neon-oe-linux-gnueabi /tools/Xilinx/SDK/2019.1/gnu/

[USRP-users] Re: Python documentation / interfacing with GPSDO

2021-08-24 Thread Marcus D. Leech
On 2021-08-24 2:16 p.m., thebouleoffo...@gmail.com wrote: This is maybe a dumber question, but is there a way to use those functions if I’m using gnuradio / gr-ettus? The rfnoc graph is created by: rfnoc_graph = ettus.rfnoc_graph(uhd.device_addr(“,”.join((‘‘,’’ Where uhd in this context

[USRP-users] Re: Python documentation / interfacing with GPSDO

2021-08-24 Thread thebouleoffools
This is maybe a dumber question, but is there a way to use those functions if I’m using gnuradio / gr-ettus? The rfnoc graph is created by: rfnoc_graph = ettus.rfnoc_graph(uhd.device_addr(“,”.join((‘‘,’’ Where uhd in this context is from the gnuradio library. I’ve been digging through the

[USRP-users] Re: Running rfnoc replay example on n310

2021-08-24 Thread Marcus D. Leech
On 2021-08-24 12:08 p.m., Tellrell White wrote: Yep. Marcus you caught it!! That worked. Do I need to complete the sections on "Compiling MPM Natively" and "Building UHD"?? I understand that I need the cross-compiler for compiling SW for the device but I don't see the need for completing the ot

[USRP-users] Re: Running rfnoc replay example on n310

2021-08-24 Thread Tellrell White via USRP-users
Yep. Marcus you caught it!! That worked. Do I need to complete the sections on "Compiling MPM Natively" and "Building UHD"?? I understand that I need the cross-compiler for compiling SW for the device but I don't see the need for completing the other two parts. Is there something additional tha

[USRP-users] Re: Running rfnoc replay example on n310

2021-08-24 Thread Marcus D. Leech
On 2021-08-24 11:39 a.m., Tellrell White wrote: The following step under "SDK Usage" $ . $SDKPATH/environment-setup-armv7ahf-vfp-neon-oe-linux-gnueabi doesn't seem to be working for me. I'm assuming $SDKPATH is the path used for installation since I haven't seen this discussed anywhere else in

[USRP-users] Re: Running rfnoc replay example on n310

2021-08-24 Thread Tellrell White via USRP-users
The following step under "SDK Usage" $ . $SDKPATH/environment-setup-armv7ahf-vfp-neon-oe-linux-gnueabi doesn't seem to be working for me. I'm assuming $SDKPATH is the path used for installation since I haven't seen this discussed anywhere else in the directions. I get the following printout.

[USRP-users] Re: Running rfnoc replay example on n310

2021-08-24 Thread Marcus D. Leech
On 2021-08-24 10:47 a.m., Tellrell White via USRP-users wrote: I'm trying to run the rfnoc replay samples from file example on the N310. I have updated the file system on the sd card to UHD 4.0 successfully. Are their instructions on a cross-compiler to use on my host machine in order to compil

[USRP-users] Running rfnoc replay example on n310

2021-08-24 Thread Tellrell White via USRP-users
I'm trying to run the rfnoc replay samples from file example on the N310. I have updated the file system on the sd card to UHD 4.0 successfully. Are their instructions on a cross-compiler to use on my host machine in order to compile the .cpp code for the example and run it on the n310? ___

[USRP-users] Re: Python documentation / interfacing with GPSDO

2021-08-24 Thread thebouleoffools
Thank you, this is more or less what I needed. I did check the 5 example files, but was missing the critical “get_mboard_sensor_names()" to understand what sensors were available. ___ USRP-users mailing list -- usrp-users@lists.ettus.com To unsubscribe