Questions tagged [gnuradio]

GNU Radio is a free software development toolkit that provides the signal processing runtime and processing blocks to implement software radios.

GNU Radio is a free software development toolkit that provides the signal processing runtime and processing blocks to implement software radios using readily-available, low-cost external RF hardware and commodity processors. It is widely used in hobbyist, academic and commercial environments to support wireless communications research as well as to implement real-world radio systems.

Official GNU Radio Logo

GNU Radio applications are primarily written using the Python programming language, while the supplied, performance-critical signal processing path is implemented in C++ using processor floating point extensions where available. Thus, the developer is able to implement real-time, high-throughput radio systems in a simple-to-use, rapid-application-development environment.

While not primarily a simulation tool, GNU Radio does support development of signal processing algorithms using pre-recorded or generated data, avoiding the need for actual RF hardware.

GNU Radio is licensed under the GNU General Public License (GPL) version 3. All of the code is copyright of the Free Software Foundation.

721 questions
0
votes
2 answers

How to install GNU Radio on OpenWrt

I have installed OpenWrt in a Virtualbox, i am new to the OpenWrt, could any one guide me how to install GnuRadio on the OpenWrt OS.
0
votes
1 answer

ImportError: No module named 'gnuradio'

As a beginner I'm trying Coding in Python GNU Radio Applications. When I set the following code in the editor (Eclipse) from gnuradio import gr from gnuradio import audio, analog class my_top_block(gr.top_block): def __init__(self): …
Abs
  • 111
  • 1
  • 2
  • 13
0
votes
1 answer

What should I supply to the "freq" input for Frequency Xlating FIR Filter for GnuRadio Companion?

I am using GnuRadio Companion (GRC) 3.75 and I am trying to use the Frequency Xlating FIR Filter (FXFF) block to perform some filtering. All the tutorials I've seen had this FXFF block take in only 1 input (such as this), which is the complex…
adrianX
  • 619
  • 7
  • 21
0
votes
0 answers

RuntimeError: the sip module implements API v11.0 but the PyQt4.QtCore module requires API v11.1

I'm trying to install gnuradio from this repo, using homebrew. I'm on OSX 10.10.2. The install keeps failing and saying that my sip and pyqt modules ahave mismatched API versions. I've done some searching and most things seem to indicate that I…
David
  • 21
  • 5
0
votes
2 answers

GNU Radio on Community radios

I'm trying to set GNU Radio as an audio processor for a little community radio in my town. I've already installed GNU Radio and it's working, but I'm not a sound engineer, so I need some help. This is my installation: MIC & Music Player ----> Mixer…
JuanMatias
  • 87
  • 1
  • 1
  • 10
0
votes
1 answer

HackRFOne not detected in gnuradio-companion on Fedora

I am using Fedora and when I execute $ hackrf_info in the terminal, this is displayed: Found HackRF board. Board ID Number: 2 (HackRF One) Firmware Version: 2014.08.1 Part ID Number: 0xa000cb3c 0x006c4757 Serial Number: 0x00000000 0x00000000…
0
votes
1 answer

fhss project in python: Error 'fft_window' object has no attribute '_proxies'

this is what i am getting when i execute the following code. Traceback (most recent call last): File "usrp.py",line 100 in tb.set_freq(i) File "usrp.py",line 77 in set_freq self.wxgui_fftsink2_0.set_baseband_freq(self.freq) File…
nit710
  • 174
  • 1
  • 2
  • 12
0
votes
2 answers

How to set usrp transmitting time and receiving time in GNU radio

I'm currently using two USRP X310, one for transmitting and another one for receiving. Programming is done using GNU Radio. I want to transmit a chirp signal to find the distance between both USRPs. However, before I can do it, I need to find out…
user982209
  • 183
  • 2
  • 3
  • 7
0
votes
1 answer

Receiving the right value when transmitting .dat file using FM radio

I am new to GNU Radio and I'm trying to transmit a value using it and the USRP B210 board. I used Matlab to convert the value 0.121 to wav format then convert the wav file to .dat file using audio_to_file example in GNU Radio. When I transmit the…
Dali
  • 1
  • 2
0
votes
1 answer

Gnu Radio osmocom sink, how to disable the sink if its not needed?

Hy i am trying to build a fm repeater station with a bladerf,as a demo. I am couriouse that you can't really disable the osomocom sink, not by a variable nor by an input. The workaround i'm currently using is that i set the frequency of the sink to…
maxbit89
  • 748
  • 1
  • 11
  • 31
0
votes
1 answer

After I install GnuRadio successfully, I can't find several hundred example files in /usr/local/share/gnuradio/examples

Everybody, I hava a difficulty. When I install GunRadio successfully, , I can't find several hundred example files in /usr/local/share/gnuradio/examples, Which describe in office wiki. I use command line to install this software inUbuntu…
Andrew_liu
  • 45
  • 1
  • 7
0
votes
1 answer

gnu-radio installation error

I get the following error on installing gnuradio. Any ideas on how to resolve this? GRAS Module loader fail: /usr/lib/gras/modules/grex/libgrex_uhd.so >>> GRAS: The debug asserts are enabled. <<< Could not import…
Karup
  • 2,024
  • 3
  • 22
  • 48
0
votes
1 answer

Are there SDRs that will let me program with a PC and then run a particular program on their own?

I'd like to program a transmitter to output a routine each time a button is pressed. That way I don't have to be connected to a computer each time I want to use it. Does something like this exist?
eibwen
  • 195
  • 8
0
votes
1 answer

Ubuntu 14.04 GNU Radio Error

I'm new to using GNU Radio and was trying to build my own out-of-tree module following the instruction here. But I get the following error when I run cmake ../ inside the build directory: checking for module 'gnuradio-runtime' -- package…
Pacu
  • 163
  • 1
  • 2
  • 8
0
votes
3 answers

GNU Radio filter design tool (gr_filter_design)

I am having some trouble getting the filter design tool to even start. When starting the application I get "This example requires a Numerical Python Extension, but failed to import either NumPy, or numarray, or Numeric. NumPy is available at…