Waveform Development Using Software Defined Radio

Total Page:16

File Type:pdf, Size:1020Kb

Waveform Development Using Software Defined Radio Examensarbete LITH-ITN-ED-EX--06/005--SE Waveform Development using Software Defined Radio Thomas Sundquist 2006-04-25 Department of Science and Technology Institutionen för teknik och naturvetenskap Linköpings Universitet Linköpings Universitet SE-601 74 Norrköping, Sweden 601 74 Norrköping LITH-ITN-ED-EX--06/005--SE Waveform Development using Software Defined Radio Examensarbete utfört i Elektronikdesign vid Linköpings Tekniska Högskola, Campus Norrköping Thomas Sundquist Handledare Annica Söderlund Examinator Ole Pedersen Norrköping 2006-04-25 Datum Avdelning, Institution Date Division, Department Institutionen för teknik och naturvetenskap 2006-04-25 Department of Science and Technology Språk Rapporttyp ISBN Language Report category _____________________________________________________ Svenska/Swedish Examensarbete ISRN LITH-ITN-ED-EX--06/005--SE x Engelska/English B-uppsats _________________________________________________________________ C-uppsats Serietitel och serienummer ISSN x D-uppsats Title of series, numbering ___________________________________ _ ________________ _ ________________ URL för elektronisk version Titel Title Waveform Development using Software Defined Radio Författare Author Thomas Sundquist Sammanfattning Abstract Software Defined Radio (SDR) is a conception of implementing radio functions in computer software, instead of having electronics performing the functions. This thesis aims to compare two different ways of implementing these functions, or waveforms. The Software Communications Architecture (SCA) is an open standard developed by the United States Department of Defense. It uses a CORBA interface environment to make waveform applications interoperable and platform independent. This method of developing SDR is compared to an open-source initiative going by the name GNU Radio. Two waveform applications are developed, one transmitter using SCA, and one receiver using GNU Radio. The analog radio interface is simulated using the sound cards of two regular PCs. The development is done using the C++ and Python programming languages. This thesis examines pros and cons of the two SDR methods, as well as performing studies of Software Defined Radio in general. Nyckelord Keyword SDR, SCA, GNU Radio, CORBA, IDL, XML Upphovsrätt Detta dokument hålls tillgängligt på Internet – eller dess framtida ersättare – under en längre tid från publiceringsdatum under förutsättning att inga extra- ordinära omständigheter uppstår. Tillgång till dokumentet innebär tillstånd för var och en att läsa, ladda ner, skriva ut enstaka kopior för enskilt bruk och att använda det oförändrat för ickekommersiell forskning och för undervisning. Överföring av upphovsrätten vid en senare tidpunkt kan inte upphäva detta tillstånd. All annan användning av dokumentet kräver upphovsmannens medgivande. För att garantera äktheten, säkerheten och tillgängligheten finns det lösningar av teknisk och administrativ art. Upphovsmannens ideella rätt innefattar rätt att bli nämnd som upphovsman i den omfattning som god sed kräver vid användning av dokumentet på ovan beskrivna sätt samt skydd mot att dokumentet ändras eller presenteras i sådan form eller i sådant sammanhang som är kränkande för upphovsmannens litterära eller konstnärliga anseende eller egenart. För ytterligare information om Linköping University Electronic Press se förlagets hemsida http://www.ep.liu.se/ Copyright The publishers will keep this document online on the Internet - or its possible replacement - for a considerable time from the date of publication barring exceptional circumstances. The online availability of the document implies a permanent permission for anyone to read, to download, to print out single copies for your own use and to use it unchanged for any non-commercial research and educational purpose. Subsequent transfers of copyright cannot revoke this permission. All other uses of the document are conditional on the consent of the copyright owner. The publisher has taken technical and administrative measures to assure authenticity, security and accessibility. According to intellectual property law the author has the right to be mentioned when his/her work is accessed as described above and to be protected against infringement. For additional information about the Linköping University Electronic Press and its procedures for publication and for assurance of document integrity, please refer to its WWW home page: http://www.ep.liu.se/ © Thomas Sundquist i Abstract Software Defined Radio (SDR) is a conception of implementing radio functions in computer software, instead of having electronics performing the functions. This thesis aims to compare two different ways of implementing these functions, or waveforms. The Software Communications Architecture (SCA) is an open standard developed by the United States Department of Defense. It uses a CORBA interface environment to make wave- form applications interoperable and platform independent. This method of developing SDR is compared to an open-source initiative going by the name GNU Radio. Two waveform applications are developed, one transmitter using SCA, and one receiver using GNU Radio. The analog radio interface is simulated using the sound cards of two regular PCs. The development is done using the C++ and Python programming languages. This thesis examines pros and cons of the two SDR methods, as well as performing studies of Software Defined Radio in general. Keywords: SDR, SCA, GNU Radio, CORBA, IDL, XML ii iii Preface This is a masters thesis on Waveform Development using Software Defined Radio written by Thomas Sundquist and Mansour Fanni. The thesis and development work were performed during the summer and autumn of 2005 at Ericsson Microwave Systems in Gothenburg, Swe- den. Thesis outline This thesis is split into 7 chapters: Chapter 1 is an introduction to the thesis. Chapter 2 deals with Software Defined Radio (SDR) in general. Chapter 3 is all about CORBA. Chapter 4 examines the SCA on a deeper level. Chapter 5 looks into GNU Radio. Chapter 6 introduces the MATH waveform. Chapter 7 reflects our conclusions. There are also several appendixes. Besides the complete source code to our applications, there is an installation guide and a document that deals with platform-specific problems that occurred during our development time. The latter might come in handy when trying to compile and use our applications. Acknowledgement This thesis wouldn’t have made it this far without the support of several people to whom we would like to offer our thanks. Our supervisors at Ericsson Microwave Systems, Annica Soderlund,¨ Daniel Guldbrand and Hakan˚ Berggren, for helping us and guiding us through the thesis work. Ole Pedersen, our examiner at Linkoping¨ University, who has read and criticized our report and given us useful tips and pointers. And last but definitely not least, we would like to thank our families and friends, who have supported us in many ways throughout the project. iv v Contents Abstract i Preface and Acknowledgement iii 1 Introduction 1 1.1 Background................................... 1 1.2 Objectives.................................... 1 1.3 Methods..................................... 1 2 Software Defined Radio 3 2.1 Introduction................................... 3 2.1.1 Waveforms ............................... 3 2.1.2 SoftwareDefinedRadio ........................ 3 2.2 GNURadio................................... 4 2.3 Software Communications Architecture . ..... 5 3 CORBA 7 3.1 CORBAingeneral ............................... 7 3.1.1 IDL................................... 7 3.1.2 PortableObjectAdapter . 9 3.1.3 NamingService............................. 9 4 Software Communications Architecture 11 4.1 Introductionandabstract . 11 4.2 CoreFramework ................................ 12 4.2.1 Base Application Interfaces . 12 4.2.2 Framework Control Interfaces . 13 4.2.2.1 DomainManager . 14 4.2.2.2 Application . 14 4.2.2.3 ApplicationFactory . 14 4.2.2.4 Devices and DeviceManager . 14 4.3 eXtensibleMarkupLanguage. 15 4.4 DomainProfile ................................. 15 4.5 SCAandCORBA................................ 17 4.6 SCAwaveformdevelopment . 18 4.6.1 Development tools . 18 4.6.2 TheAPIofSCA ............................ 18 vi 5 GNU Radio 21 5.1 Overview .................................... 21 5.2 SDR Construction using GNU Radio . 21 5.3 Creating your own building block . 22 5.3.1 SWIG.................................. 22 5.3.2 Boost .................................. 22 5.3.3 Naming Conventions . 22 5.3.4 Muchmoretoknow .......................... 23 5.3.5 TheC++Class ............................. 23 5.4 Asimpleexample................................ 24 6 Implementation of the MATH Waveform 27 6.1 Introduction................................... 27 6.2 SCAimplementation .............................. 28 6.2.1 The beginning steps . 28 6.2.2 The MATH implementation . 29 6.2.3 Functionality .............................. 30 6.2.4 Signalingsystem ............................ 31 6.3 GNURadioimplementation .......................... 32 6.3.1 Firstattempt .............................. 32 6.3.2 Two signal-flow-graphs . 33 6.3.3 The actual implementation . 33 6.3.3.1 TheC++code ........................ 34 6.3.3.2 The Python code . 34 7 Conclusions 35 7.1 Developing waveforms using SCA . 35 7.1.1 Benefitsandadvantages . 35 7.1.2 DisadvantagesofSCA . 36 7.1.3 Conclusions about the SCA . 37 7.2 Developing waveforms using GNU Radio . 37 7.2.1 Advantages of GNU Radio . 37 7.2.2 Disadvantages and drawbacks . 38 7.3 Comparison
Recommended publications
  • Inventors, Technologists and Entrepreneurs
    19 November 2013 We, the undersigned, are a group of inventors, technologists and entrepreneurs. Many of us have founded technology businesses; we have invented many of the protocols, systems and devices that make the Internet work, and we are collectively listed as the inventors on over 150 patents. We write to you today about the U.S. patent system. That system is broken. Based on our experiences building and deploying new digital technologies, we believe that software patents are doing more harm than good. Perhaps it is time to reexamine the idea, dating from the 1980s, that government-issued monopolies on algorithms, protocols and data structures are the best way to promote the advancement of computer science. But that will be a complex task, and one we don't expect to happen quickly. Unfortunately, aspects of the problem have become so acute they must be addressed immediately. Broad, vague patents covering software-type inventions—some of which we ourselves are listed as inventors on—are a malfunctioning component of America's inventive machinery. This is particularly the case when those patents end up in the hands of non-practicing patent trolls. These non-practicing entities do not make or sell anything. Their exploitation of patents as a tool for extortion is undermining America’s technological progress; patent trolls are collecting taxes on innovation by extracting billions of dollars in dubious licensing fees, and wasting the time and management resources of creative businesses. Many of us would have achieved much less in our careers if the trolling problem had been as dire in past decades as it is now.
    [Show full text]
  • A Software Defined Radio Testbed for Research in Dynamic Spectrum Access
    A SOFTWARE DEFINED RADIO TESTBED FOR RESEARCH IN DYNAMIC SPECTRUM ACCESS A Thesis Submitted to the Faculty of Purdue University by David A. Clendenen In Partial Fulfillment of the Requirements for the Degree of Master of Science in Engineering May 2012 Purdue University Fort Wayne, Indiana ii For my uncle, Jeffrey Davis, who instilled in me from a young age the desire to learn how things work and inspired me to become an electrical engineer. iii ACKNOWLEDGMENTS I first thank Dr. Todor Cooklev for providing me with the opportunity to expand my engineering background to the world of wireless communications and software defined radio. I appreciate his patience and flexibility in working with me as I balanced my career, graduate courses and this research. Next, I thank my graduate committee; Dr. Chao Chen and Dr. Yanfei Liu and my thesis format advisor, Barbara Lloyd for their support and direction in my thesis writing. I also thank Dr. Elizabeth Thompson for first informing me of the National Science Foundation grant and Dr. Donald Mueller and Dr. Carlos Raez for selecting me as a recipient for the grant. I would also like to thank my colleagues at Regal Beloit and my manager, Dr. Roger Becerra, whose support and flexibility allowed me to accomplish my professional and educational goals. I thank my parents for always encouraging me and instilling in me the value of hard work. Most importantly I thank my wife, Tish, for her encouragement and understanding throughout my graduate studies. Above all else, without her support none of this would have been possible.
    [Show full text]
  • Software Libre Para Una Sociedad Libre
    Software libre para una sociedad libre Richard M. Stallman Software libre para una sociedad libre Richard M. Stallman Introducción de Lawrence Lessig Diciembre 2004 Versión 1.0 Software libre para una sociedad libre Richard M. Stallman Título original: Free Software, Free Society: Selected Essays of Richard M. Stallman (GNU Press, 2002) Primera edición en castellano (en papel): Noviembre 2004 Traducción principal: Jaron Rowan, Diego Sanz Paratcha y Laura Trinidad Edición: Traficantes de Sueños c/ Hortaleza 19, 1o Dcha. 28004 Madrid. Tlfno: +34 1 5320928 http://traficantes.net c Copyright 2004 de los artículos de este libro, Richard M. Stallman c Copyright 2004 de la Introducción, Lawrence Lessig c Copyright 2004 de la Edición, Traficantes de Sueños Se permite la copia, ya sea de uno o más artículos completos de esta obra o del conjunto de la edición, en cualquier formato, mecánico o digital, siempre y cuando no se modifique el contenido de los textos, se respete su autoría y esta nota se mantenga. ISBN: 84-933555-1-8 Depósito Legal: M-44298-2004 Edición digital a cargo de: Miquel Vidal <[email protected]>. Esta edición electrónica se ha realizado íntegramente con software libre, mediante el procesador LATEX 2ε, GNU Emacs y AUCTEX. 3 Traficantes de Sueños Traficantes de Sueños no es una casa editorial, ni siquiera una editorial independiente que contempla la publicación de una colección variable de textos críticos. Es, por el contrario, un proyecto, en el sentido estricto de «apuesta», que se dirige a cartografíar las líneas constituyentes de otros órdenes de vida. La construcción teórica y práctica de la caja de herramientas que, con palabras propias, puede componer el ciclo de luchas de las próximas décadas.
    [Show full text]
  • Internet of Things Spectrum Monitoring and Localization
    MQP 2A18 Internet of Things Spectrum Monitoring and Localization A Major Qualifying Project Submitted to the Faculty of WORCESTER POLYTECHNIC INSTITUTE In partial fulfillment of the requirements for the Degree of Bachelor of Science By: _________________________________ Lauren Getz _________________________________ William Schwartz _________________________________ Katherine Smith Project Advisors: ____________________________________________ Professor Stephen J. Bitar, Electrical & Computer Engineering- Advisor-of-Record ____________________________________________ Professor Michael J. Ciaraldi, Computer Science -Co-Advisor ____________________________________________ Professor Alexander M. Wyglinski, Electrical & Computer Engineering- Co-Advisor Abstract A system which localizes indoor sub-1GHz transmission signals provides a low cost and effective alternative to traditional signal sensing and localization. The system uses a pre-existing WiFi network, PlutoSDRs, and a web server to visualize the estimated location of the transmitted signals. The system achieved 2.5-meter accuracy under ideal conditions satisfying the goal of 3- meter accuracy set forth by the team. i Acknowledgements We would like to thank our advisors, Stephen Bitar, Michael Ciaraldi, and Alex Wyglinski for their mentorship throughout the duration of this project. ii Executive Summary Implementing localization with SDR devices is more cost effective and more accurate than other spectrum sensing products currently on the market. With the development of Internet of Things (IoT), many smart devices are increasingly using wireless communication, making localization of these devices an important security measure. Using the PlutoSDR, signals were effectively localized within 3-meter accuracy on the 900MHz band. Problem Statement IoT devices can pose a threat to a secure network. Since there are a lot of known IoT vulnerabilities [1], many malicious actors will target them in order to gain access to an otherwise secure network.
    [Show full text]
  • Convert Radio-Waves to Alert Using SDR, AWS Lambda and Amazon Transcribe API
    AEGAEUM JOURNAL ISSN NO: 0776-3808 Convert Radio-waves to alert using SDR, AWS Lambda and Amazon Transcribe API Ark Vrajlal Balar & Dr. Kamaljit I. Lakhtaria Department of Computer Science, Rollwala Computer Center, Gujarat University Abstract- Communication is essential and the major aspect Conversations and commands conveyed over the radio nowadays. The most used and authentic communication method link could be transcripted, it would be an add-on is radio communication. Conversations and commands conveyed advantage for its users. over the radio link can be transcripted, so that the receiver can 2. Linux, is a family of open source Unix-like operating have a log of the conversation. From the generated transcript systems based on the Linux kernel, an operating system conversations are read again to find if any significant words or kernel first released on September 17, 1991, by Linus commands are conveyed. If specific commands are conveyed; it Torvalds. Linux is typically packaged in a Linux can be used for creating an alert or for logging. distribution.A common feature of Unix-like systems, Linux includes traditional specific-purpose Index Terms- Radio, radio communication, sdr, aws, programming languages targeted at scripting, text transcription, reading, alert. processing and system configuration and management in general. Linux distributions support shell script. A scripting or script language is a programming I. INTRODUCTION language for a special run-time environment that Communication is the important aspect nowadays. automates the execution of tasks; the tasks could Communication takes place in everything, everywhere. The most alternatively be executed one-by-one by a human used and authentic communication method is radio operator.
    [Show full text]
  • I/Q Data Guide V.1
    I/Q Data Guide v.1 Guide for acquiring I/Q data with the Gnu Radio Framework Flagstaff, AZ March 5, 2017 Edited by Michael Finley Northern Arizona University Dynamic and Active Systems Laboratory CONTENTS I/Q Data Guide v.1: Project Manual Contents 1 Project Description 3 2 Methods/Procedures 4 3 MATLAB Processing 6 4 Recommendations 8 Page 2 of 9 I/Q Data Guide v.1: Project Manual 1 Project Description The aim of this project is to construct an unmanned aerial system that integrates a radio telemetry receiver and data processing system for efficient detection and localization of tiny wildlife radio telemetry tags. Cur- rent methods of locating and tracking small tagged animals are hampered by the inaccessibility of their habitats. The high costs, risk to human safety, and small sample sizes resulting from current radio telemetry methods limit our understanding of the movement and behaviors of many species. UAV-based technologies promise to revolutionize a range of ecological field study paradigms due to the ability of a sensing platform to fly in close proximity to rough terrain at very low cost. The new UAV-based (UAV-RT) system will dramatically improve wildlife tracking capability while using inexpensive, commercially available radio tags. The system design will reflect the unique needs of wildlife tracking applications, including easy assembly and repair in the field and reduction of fire risk. Our effort will focus on the development, analysis, real-time implementation, and test of software-defined signal processing algorithms for RF signal detection and localization using unmanned aerial platforms.
    [Show full text]
  • Selected Essays of Richard M. Stallman
    Free Software, Free Society: Selected Essays of Richard M. Stallman Introduction by Lawrence Lessig Edited by Joshua Gay GNU Press www.gnupress.org Free Software Foundation Boston, MA USA First printing, first edition. Copyright © 2002 Free Software Foundation, Inc. ISBN 1-882114-98-1 Published by the Free Software Foundation 59 Temple Place Boston, MA Tel: 1-617-542-5942 Fax: 1-617-542-2652 Email: [email protected] Web: www.gnu.org GNU Press is an imprint of the FSF. Email: [email protected] Web: www.gnupress.org Please contact the GNU Press for information regarding bulk purchases for class- room or user group use, reselling, or any other questions or comments. Original artwork by Etienne Suvasa. Cover design by Jonathan Richard. Permission is granted to make and distribute verbatim copies of this book provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute translations of this book into another language, from the original English, with respect to the conditions on distribution of modified versions above, provided that it has been approved by the Free Software Foundation. i Short Contents Editor’s Note................................................ 1 A Note on Software .......................................... 3 Topic Guide ................................................ 7 Introduction ............................................... 11 Section One ............................................... 15 1 The GNU Project ....................................... 17 2 The GNU Manifesto ..................................... 33 3 Free Software Definition ................................. 43 4 Why Software Should Not Have Owners ..................... 47 5 What’s in a Name? ...................................... 53 6 Why “Free Software” is Better than “Open Source” ............ 57 7 Releasing Free Software if You Work at a University ........... 63 8 Selling Free Software ...................................
    [Show full text]
  • Welcome to Osmosdr
    http://sdr.osmocom.org/trac/ Welcome to OsmoSDR :7#$% ' 7#$%' @A#-* ',' ;''()' 5' #$%2#-$'%'3 + .&''-',''(#$%'97#$%* ('('*- A5*$( 2&68=*-'3/#%2 ,'3+A&2*'3#$%9&$01 /#1'6'( %) /'9' + .'/#1 8- 9' A'- - !7#$% (' '('5+ '('-2 + ;#B3''*' BB+&+B :&'( '( ('-9'('( ('+ 8-' '-6' GNSS-SDR officially supports rtl-sdr (''& !"## #$%& ('++(+ '!"##' '''(%) #$%'*(+ '&'6 &'!#''',-'-'**''& ' git clone !#'+.&%) /*'* git://git.osmocom.org $01 '&+++ /osmo-sdr.git 2%3 -* *-'& 4 ( BB('++( 5(' ( ( B('B B 5 2 3 First 16 OsmoSDR boards available for developers A'-'6' '('6 '7#$%- (9 '., + -'*'+ 8-9& ''(-9'- Picture -''*&**'9--'6 6 '(-& ''2'(&*3' '2+++ 2%3 '- 4 ( 5(' 5 2 3 Introducing RTL-SDR :' 7#$% '''*97 *2*&#;6(3*6'(-& ' ' + #-' <.'''( ($01 /#1'9'('& (-''+ +++ 2%3 4 ( 5(' 5 2 3 OsmoSDR hardware verification at 28C3 4 97#$%-*&'&'(-'( '&+ *'= #4;/'-6'(9/#1*( '#4; 14 >?''-6'( #' ''-6'( 1 von 2 http://sdr.osmocom.org/trac/ A!4*'C4!*' *('(#4;+++ 2%3 4 ( 5(' - 5 2 3 About OsmocomSDR ''*( 7#$% 9 '=9- #-$'%'-B'- + 4 ( 5('23 5 2 3 Mailing List :'*7#$%- -'(''(' DG+F *'*B*'*'-'('6 BB'++(B' B''B Credits #%' #% #& 2'(''(9'(3 5''$' 9;'?? ' 2'(9A!49 *3 8: & 2'-3 Attachments + ( 2 + ?13 *& (+O51(7#$%P *+ ( 2 +?13 *& (+O7#$% '-P 2 von 2 http://sdr.osmocom.org/trac/wiki/GrOsmoSDR OsmoSDR Gnuradio Source - # . % ! 1 "# $ % & ' & ' & $' " + % ! Build process A . !" #$%!#$ !$ &#$ !!$ !" #$%!'()!*+,,+-! . ! %, ( %
    [Show full text]
  • 1. General Python Presentation : ° Why (Not) Python ? ° History
    1. General Python presentation : ° Why (not) Python ? ° History & Community ° Implementations & bundles (flavors) ° Frameworks & libs 2. Some coding bases 3. Peps & the zen of Python Why (not) Python Why not ? - You need realtime ( < µsec) but check Viper ( http://doc.viperize.it ) - You have very little RAM but Tiny Python = 64K & VM of micropython = 2,4K - You have very little CPU but there are implementations even for Arduino - Compiled code is your God, Interpreted code is your Evil. - You need protected code - You need compatibility with bullshit managers (justification + job-protection) > technical rationality Why (not) Python Why ? - Very high-level, short yet very readable, intuitive syntax Easy to learn (pseudo-code-like) (no funky WTF characters series...follow my eyes). Great for non-trivial business-logic (You still understand while your client is long time lost in his own specs) Maintainable even after 150 last-minute changes (Don't tell me it never happens) Maintainable even after 10,000 lines of code (Maintenance = €) - Totally Free & Truly Open Source (PEPs, PSF, ...) - Portable on most OS, including embed systems, including GUI lib - Many different uses: Small helper-scripts (Any Sys-admins in the room ?) Softs with GUI (Cool to build cross-OS heavy clients) Serious daemons (numerous frameworks & protocol libs, API-Hour being the best) Scripting in other softs (GNU Radio, Blender, OOo, AutoDesk Maya, ArcGIS, GIMP, Minecraft, Corel, Rhino 3D ...) Live data processing in shell (Any mad scientist or mathematician in the room
    [Show full text]
  • Gr-Ais I Suse12.3
    gr-ais i SuSE12.3 First a Warning! Never use gr-ais in real navigation it's neither stable or reliable. The description below is just made for ”amusement” in the purpose of getting ”real-time” updated AIS-messages to OpenCPN! Suggestions for suitable DVB-T USB-dongles you can get from here: http://www.reddit.com/r/RTLSDR/comments/s6ddo In he examples below we used two different USB-recievers: One Newsky TV28T Coax DVB-T DAB DAB+ FM Stick SDR with RTL2832U-chipset and E4000-tuner, respectively a LIFEVIEW NO DVB-T USB DELUXE LV5T with rtl2832 chipset and fc0013 tuner. -We both live in in different places in Stockholm, neither of us, living within 1000 m from the sea (or lake), 10 resp. 45 m above sealevel, have got a visible contact with a harbor. We both used the small indoor antennas that came with the dongles. Prerequisites The description below comes from an installation in OpenSuSE12.3 with kernel 3.7.10-1.1-desktop, in both cases x86_64. The reason we used such a new version was due to a basic misunderstanding. We thought that the cipset-modules rtl2832 and tuner-modules fc0013 or e4000 respectively were necessary for being able to install gnuradio. Kernel support for those modules were first integrated in kernel 3.6 →. Many observations after our installation indicated that our assumption was wrong. -Finally we tried it out by shutting them -and the other dvb-t-modules- down using blacklist/rmmode. To our surprise gnuradio worked perfectly without them! Note: the modules rtl2832 and fc0013/e4000 are not necessary for running gnuradio, rtl-sdr, osmosdr or gr-ais.
    [Show full text]
  • Usage of the Gstreamer Framework for the Generation, Analysis, Processing and Visualization of Sonar Signals
    Volume 18 HYDROACOUSTICS USAGE OF THE GSTREAMER FRAMEWORK FOR THE GENERATION, ANALYSIS, PROCESSING AND VISUALIZATION OF SONAR SIGNALS KRZYSZTOF CZARNECKI, DORIAN DĄBROWSKI Gdansk University of Technology Faculty of Electronics, Telecommunications and Informatics Department of Marine Electronic Systems Narutowicza 11/12, 80-233 Gdańsk, Poland [email protected] In this paper, the usage of the GStreamer framework in applications of classical digital signal processing is discussed. Especially, its adaptation regarding sonar technique is presented here. Signal generation, analysis, processing, and visualization are implemented as GStreamer plugins. The new plugins and the structure of data transmitted through the GStreamer pipeline are both briefly discussed. The introduced plugins are published as free software under the GROJ project. INTRODUCTION The need for an open software platform given over to application development is evident. Moreover, technical support, the availability of documentation, and a lack of dependence on the hardware and operating system is desirable here. Essentially, the benefit of using such a platform is source code portability, software standardization, and finally, cost reduction in the development process. These requirements are fulfilled by The GStreamer framework (GSF) [1] and The GNU Radio Toolkit [2,3], amongst others. The considerations in this paper are focused on the GSF and its use in the analysis and processing of sonar chirp signals. GStreamer is an open source multiplatform framework originally dedicated to the stream- ing and processing of multimedia data. It is known to work on Linux, Solaris, Microsoft Win- dows, FreeBSD, Mac OS X, and many other popular operating systems. It is also widely em- ployed as an engine for many multimedia applications, such as media players and capture en- coders, for example: Banshee, Kaffeine, Rhythmbox, Sound Juicer, Totem and so on.
    [Show full text]
  • GNU Status Reports: October 2011
    GNU Status Reports: October 2011 [email protected] GNU Status Reports: October 2011 Copyright c 2011, 2012 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are per- mitted in any medium without royalty provided the copyright notice and this notice are preserved. GNU Status Reports: October 2011 i Table of Contents GNU Status Reports: October 2011 :::::::::::::: 1 Health (http://www.gnu.org/software/health) :::: 1 Cflowhttp://www.gnu.org/software/cflow ( )::::::: 2 Chess (http://www.gnu.org/software/chess)::::::: 2 Coreutils (http://www.gnu.org/software/coreutils) ::::::::::::::::::::::::::::::::::::::::::::::::: 2 Directory (http://www.gnu.org/software/directory) ::::::::::::::::::::::::::::::::::::::::::::::::: 3 Emacs (http://www.gnu.org/software/emacs) :::::: 3 Fontutils (http://www.gnu.org/software/fontutils) ::::::::::::::::::::::::::::::::::::::::::::::::: 3 Gama (http://www.gnu.org/software/gama):::::::: 4 Gawk (http://www.gnu.org/software/gawk) :::::::: 4 GDBM (http://www.gnu.org/software/gdbm) :::::: 4 GnuPG (http://www.gnu.org/software/gnupg) :::: 5 GNURadio (http://www.gnu.org/software/gnuradio) ::::: 5 GSEGrafix (http://www.gnu.org/software/gsegrafix) :::: 6 Gtypist (http://www.gnu.org/software/gtypist) :: 7 Mailutils (http://www.gnu.org/software/mailutils) ::::::::::::::::::::::::::::::::::::::::::::::::: 7 GNU Status Reports: October 2011 ii Maverik (http://www.gnu.org/software/maverik) ::::::::::::::::::::::::::::::::::::::::::::::::: 7 RCS (http://www.gnu.org/software/rcs)
    [Show full text]