gnu radio
play

GNU Radio Introduction and Computational Capabilities of the Open - PowerPoint PPT Presentation

GNU Radio Introduction and Computational Capabilities of the Open Source GNU Radio Project Thomas W. Rondeau GNU Radio maintainer SDR Technical Conference, 2010 Tutorial Scope An overview of GNU Radio and its purpose and capabilities


  1. GNU Radio Introduction and Computational Capabilities of the Open Source GNU Radio Project Thomas W. Rondeau GNU Radio maintainer SDR Technical Conference, 2010

  2. Tutorial Scope • An overview of GNU Radio and its purpose and capabilities • A look inside to see how it works • Understanding of the computational models, methods, and processes behind the software • An appreciation for its multidisciplinary nature

  3. Tutorial Outline boring more fun fun stuff stuff stuff back to introduction examples boring stuff GUIs software preachy stuff interesting programming technical stuff useful stuff stuff profiling/design computational gnuradio model companion

  4. OPENING INTRODUCTION

  5. GNU Radio gnuradio.org • Open source software radio • Provides the scheduler for real-time operation • Includes: – Many signal processing blocks – Interfaces to a few radio front ends – Graphical user interfaces (GUI) – Examples • A platform to build and explore radios (or any other communications platform)

  6. Python on top; C++ underneath Python Interface C++ Libraries USRP libusrp.so Source Filter libgnuradio-core.so FM Demod Audio libgnuradio-alsa.so Sink

  7. Structuring the Python • from gnuradio import gr Get the namespace • class myblock(gr.top_block): Inherit from top_block • Class constructor def __init__(self): • Call top_block constructor gr.top_block.__init__(self) • Create some GNU Radio blocks self.block1 = gr.<block> self.block2 = gr.<block> • Connect blocks self.connect(self.block1, self.block2)

  8. Using the Python class • Some function to use the block def main(): • tb = myblock() Instantiate a myblock object • Start the flowgraph tb.start() • Block until it finishes tb.wait()

  9. FM EXAMPLE WALKTHROUGH

  10. ANALYSIS TOOLS

  11. Visualization is an important part of analysis and debugging Off-line tools: Scipy: www.scipy.org Matplotlib: matplotlib.sourceforge.net On-line tools: wxPython GUI: www.wxpython.org QT GUI: qt.nokia.com/products www.riverbankcomputing.co.uk qwt.sourceforge.net

  12. Basic Matplotlib Plotting import scipy, pylab t = scipy.arange(0, 1, 0.001) x = scipy.cos(2*scipy.pi*(100)*t) y = scipy.sin(2*scipy.pi*(100)*t) fig = pylab.figure(1) sp = fig.add_subplot(1,1,1) p1 = sp.plot (t, x, “b - ”, linewidth =2, label=“func1”) p2 = sp.plot (t, y, “r - o”, linewidth =2, label=“func2”) sp.legend() pylab.show()

  13. Using Matplotlib with GNU Radio • Use gr.head to stop graph after N items – gr.head(gr.sizeof_gr_complex, N) • Use gr.vector_sink_c to store data – self.vsink = gr.vector_sink_c() – After graph has run: • self.vsink.data() returns the data as a Python list • We can now plot all N items of vsink

  14. Matplotlib Output Examples: Plotting filter impulse responses

  15. Matplotlib Output Examples: Filtering noise

  16. USING MATPLOTLIB WITH FM EXAMPLE

  17. The wx and QT GUI’s add on -line support for visualization. from gnuradio.qtgui import qtgui self.qtsink = qtgui.sink_c(fftsize, window, fc, Rs, title, fft, waterfall, waterfall3D, time, const, parent) Set up with an initial FFT size, window function, center frequency, sample rate, and window title. Remaining arguments turn on/off the different plots Can also set a parent to work in with other QT apps

  18. The QT GUI output offers multiple views: FFT (or PSD)

  19. The QT GUI output offers multiple views: Waterfall (or spectrogram)

  20. The QT GUI output offers multiple views: Time (with real and imaginary parts)

  21. USING QT GUI WITH FM EXAMPLE

  22. THINKING ABOUT SOFTWARE

  23. SOFTWARE Radio • More than just signal processing algorithms • We worry about implementation as well • OSS project has many objectives: – High quality, efficiency, and speed – Readable (and therefore editable) – Robust and reliable

  24. Things we think about Installation and operation on multiple OSes Unit testing Profiling and performance testing

  25. Autotools: The worst build system aside from all the others… • GNU’s Automake and Autconf – Well-understood build system in GNU community • Test operating system support • Ensure dependencies are met • make check and make distcheck to test full build system

  26. Unit Testing: make sure your code works and continues to work. • For C++ code, we use the CppUnit test suite • For blocks wrapped to Python, we use python.unittest • Using Hudson Continuous Integration tool to monitor builds and tests – hudson-ci.org

  27. Profiling Code • First rule: “premature optimization is the root of all evil.” • Code, test, get it right. Then optimize. • Use profiling tools to find where your code needs work. • Focus on measured performance problems and optimize. • Things you think you know that just ain’t so…

  28. Designing a FIR filter i = 0 input e g f e d c b a idx = 0 taps (len = 4) c 0 c 1 c 2 c 3 buffer (2xlen) 0 0 0 0 0 0 0 0 y i = x i c 0 + x i c 1 + x i c 2 + x i c 3 Update: 1. Write next input to buffer at idx 2. Write same input to buffer at idx + len 3. increment len = len + 1 4. Perform filter calculation

  29. Designing a FIR filter i = 0 input e g f e d c b a idx = 0 c 0 c 1 c 2 c 3 a 0 0 0 a 0 0 0 Update: 1. Write next input to buffer at idx 2. Write same input to buffer at idx + len 3. increment len = len + 1 4. Perform filter calculation

  30. Designing a FIR filter i = 0 input e g f e d c b a idx = 1 c 0 c 1 c 2 c 3 a 0 0 0 a 0 0 0 y i = 0 + 0 + 0 + ac 3 Update: 1. Write next input to buffer at idx 2. Write same input to buffer at idx + len 3. increment len = len + 1 4. Perform filter calculation

  31. Designing a FIR filter i = 1 input e g f e d c b a idx = 1 c 0 c 1 c 2 c 3 a b 0 0 a b 0 0 Update: 1. Write next input to buffer at idx 2. Write same input to buffer at idx + len 3. increment len = len + 1 4. Perform filter calculation

  32. Designing a FIR filter i = 1 input e g f e d c b a idx = 2 c 0 c 1 c 2 c 3 a b 0 0 a b 0 0 y i = 0 + 0 + ac 2 + bc 3 Update: 1. Write next input to buffer at idx 2. Write same input to buffer at idx + len 3. increment len = len + 1 4. Perform filter calculation

  33. Designing a FIR filter i = 2 input e g f e d c b a idx = 2 c 0 c 1 c 2 c 3 a b c 0 a b c 0 Update: 1. Write next input to buffer at idx 2. Write same input to buffer at idx + len 3. increment len = len + 1 4. Perform filter calculation

  34. Designing a FIR filter i = 2 input e g f e d c b a idx = 3 c 0 c 1 c 2 c 3 a b c 0 a b c 0 y i = 0 + ac 1 + bc 2 + cc 3 Update: 1. Write next input to buffer at idx 2. Write same input to buffer at idx + len 3. increment len = len + 1 4. Perform filter calculation

  35. Designing a FIR filter i = 3 input e g f e d c b a idx = 3 c 0 c 1 c 2 c 3 a b c d a b c d Update: 1. Write next input to buffer at idx 2. Write same input to buffer at idx + len 3. increment len = len + 1 4. Perform filter calculation

  36. Designing a FIR filter i = 3 input e g f e d c b a idx = 4 c 0 c 1 c 2 c 3 a b c d a b c d y i = ac 0 + bc 1 + cc 2 + dc 3 Update: 1. Write next input to buffer at idx 2. Write same input to buffer at idx + len 3. increment len = len + 1 4. Perform filter calculation

  37. Designing a FIR filter i = 4 input e g f e d c b a idx = 0 c 0 c 1 c 2 c 3 e b c d e b c d Update: 1. When idx == len, wrap around to 0

  38. Designing a FIR filter i = 4 input e g f e d c b a idx = 1 c 0 c 1 c 2 c 3 e b c d e b c d y i = bc 0 + cc 1 + dc 2 + ec 3 Update: 1. When idx == len, wrap around to 0

  39. Designing a FIR filter i = 5 input e g f e d c b a idx = 1 c 0 c 1 c 2 c 3 e f c d e f c d Continue with this algorithm for all input items.

  40. Designing a FIR filter i = 5 input e g f e d c b a idx = 2 c 0 c 1 c 2 c 3 e f c d e f c d y i = cc 0 + dc 1 + ec 2 + fc 3 Continue with this algorithm for all input items.

  41. Designing a FIR filter • The only logic in this algorithm is to check when idx == len in order to reset idx = 0. • How? If statement modulo len idx = idx + 1; if(idx == len) idx = (idx+1) % len; idx = 0; • Which is faster? Does it matter?

  42. Profiling tools • Walk through an example using: – Valgrind (http://valgrind.org) – Cachegrind (http://valgrind.org/info/tools.html) – KCachegrind (http://kcachegrind.sourceforge.net)

  43. PROFILING EXAMPLE

  44. PROGRAMMING MODEL

  45. We started off with this concept: Python Interface C++ Libraries USRP libusrp.so Source Filter libgnuradio-core.so FM Demod Audio libgnuradio-alsa.so Sink

  46. Behind the scenes: gr_buffer_reader gr_buffer_reader USRP FM Filter Source Demod gr_buffer gr_buffer • Scheduler calls a block’s work function and tells it how many items it can produce based on the number of items in the gr_buffer. • Blocks read from their input buffer and write to an output buffer. • Scheduler is optimized for throughput.

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend