An Introduction to Software Radio

Size: px
Start display at page:

Download "An Introduction to Software Radio"

Transcription

1 An Introduction to Software Radio (and a bit about GNU Radio & the USRP) Eric Blossom eb@comsec.com comsec.com/wiki USENIX / Boston / June 3, 2006

2 What's Software Radio? It's a technique for building wireless communication systems. Get the software as close to the antenna as you can. No modulation specific h/w Software defines the signals transmitted, sample by sample. Software demodulates/decodes the samples received.

3 S/W Radio Block Diagram

4 Pros... Extreme flexibility On the fly reconfiguration Can do multiple (different) things simultaneously Much quicker development cycle In-field upgrades are possible No soldering irons required... It's a simple matter of programming!

5 Cons... Relatively high power consumption relative to fixed function ASICs. Higher cost if flexibility not important High symbol rate systems require FPGA or ASIC to support data rates A/D performance is limiting factor

6 Why now? Low cost of compute cycles & memory General Purpose Processor (GPP) Digital Signal Processor (DSP) Field Programmable Gate Array (FPGA) A/D's and D/A's are now good enough

7 Where is it used today? Military Research: Academic & Industry Cellular basestations SIGINT

8 Expected uses Public Safety interoperability Handsets (enabled by new DSPs) New personal communicators New kinds of networks

9 Wireless networking Life beyond WLAN and broadcast Software radio provides flexibility All parts of the stack are hackable Take advantage of multicast nature of the medium Lots of research opportunities

10 Still need some h/w Getting from RF to samples Getting from samples to RF

11 RF / IF / samples Usually two steps: RF to IF (downconversion) Sample at IF Either direct conversion or superheterodyne Can sample at baseband or passband Nyquist: need > 2 * bandwidth of interest

12 A/D performance Sample rate khz to GHz Resolution 8 to 24 bits Spurious free dynamic range (SFDR) maxes out at about 110 db SFDR

13 Analog vs Digital Processing Analog: Tremendous dynamic range Non-ideal behavior Variation from part to part Variation over temp & time Digital: Perfectly reproducible behavior Complex operations are easy

14 Cognitive Radio S/W Radio + AI Observe the environment (RF, regulatory...) Evolve operating configuration E.g., frequency, modulation, channel coding... Optimize what?

15 S/W Radio Tools & Frameworks C / C++ MATLAB / SIMULINK Software Communications Architecture (SCA) Used in Joint Tactical Radio System (JTRS) CORBA is the answer, what was the question? GNU Radio (Python and C++)

16 Regulatory issues FCC: politicians, lawyers, economists, engineers s/w radio is an enabling technology Helps with spectrum scarcity How to control / regulate? Some argue justification for FCC is gone What is interference? Property vs Commons What if each cow brought its own grass?

17 And on to GNU Radio...

18 What's GNU Radio? Free software toolkit for: Building and deploying software radios Learning about DSP and communication systems Creating new kinds of radios, modulations, protocols, development environments... Licensed under GPL A community effort

19 GNU Radio Architecture / Impl Data flow abstraction Signal processing blocks and connections between them Event based overlay Message Queues and Messages Hybrid C++ / Python system Typically run on general purpose processor Hello World example

20 Hello World #!/usr/bin/env python from gnuradio import gr from gnuradio import audio class my_graph(gr.flow_graph): def init (self): gr.flow_graph. init (self) sample_rate = ampl = 0.1 src0 = gr.sig_source_f(sample_rate, gr.gr_sin_wave, 350, ampl) src1 = gr.sig_source_f(sample_rate, gr.gr_sin_wave, 440, ampl) dst = audio.sink(sample_rate) self.connect(src0, (dst, 0)) self.connect(src1, (dst, 1)) if name == ' main ': try: my_graph().run() except KeyboardInterrupt: pass

21 Signal Processing Blocks Input streams and output streams I/O signature Type of each stream is specified Blocks specifies constraints on # of streams Relative i/o rates Fixed 1:1, Fixed interp 1:N, Fixed decim N:1 Variable

22 Who's using GNU Radio? Academic researchers Industry / DARPA researchers Various government research groups Hackers Hams Radio Astronomers Scanning Probe Microscopists

23 Applications Transceivers Research in wireless networking Ad-hoc networks MIMO STAP / Adaptive beam forming Cognitive Radio Passive Radar (PCL) Geolocation SIGINT Conventional Amateur stuff Radio Astronomy

24 Cognitive Radio Many efforts using GNU Radio DARPA ACERT (BBN) Virginia Tech CMU Rutgers WINLAB Often in combination with Click Modular Router

25 Waveforms Now: AM, FM, SSB ATSC VSB-8 FSK, GMSK, PSK Coming: OFDM Fast Freq Hopper Direct Sequence

26 Coming attractions...

27 Message Blocks More natural support for packetized data Leverage existing code base Abstractions: Blocks / Messages / Protocol classes / Ports Connections between end points Data + metadata (packet annotation) Support for precise timing Hierarchical composition Nest classic GNU Radio within m-block

28 Message Blocks (2)

29 Passive Radar (PCL) Use existing transmitters (e.g., TV, Radio) Very high dynamic range front end 2 x 2 phased array TDOA, doppler, angle of arrival ESPRIT output: position, velocity, object class Superresolution techniques

30 Existence proof!

31 Why? The USRP

32 Sound Cards, etc Relatively low sampling rate 48 khz or 96 khz, 16 or 24 bits Good for audio input and output Can be used with narrow and low IF Examples Narrow band HF (SDR 1000) Digital Radio Mundial

33 Wide Band I/O PCI A/D and D/A Cards Good Bus Bandwidth Expensive to Very Expensive ($1k - $10k) Still need RF Front End

34 VXI / cpci /... Card cages full of cards RF Front Ends Digital Receiver / Transmitter Typically A/D, D/A + FPGA or ASIC FPGA / DSP / GPP High speed interconnect Lots of choices Typically very expensive.

35 USRP 80% solution at 10% of the cost Low cost Small / portable Design is completely open Multiple coherent channels

36 USRP

37 USRP Block Diagram

38 Available RF Daughterboards 400 MHz 500 MHz transceiver 800 MHz 1 GHz transceiver GHz transceiver 50 MHz 800 MHz receive only 800 MHz 2.4 GHz receive only Basic Tx and Rx (baseband i/o)

39 emulab.net University of Utah networking testbed Expect 20 nodes around campus by end of year. Uses USRP hardware with: 2.4 GHz transceivers (?) 400 MHz 500 MHz transceivers (?) 50 MHz 800 MHz receive only

40 Resources GNU Radio: discuss-gnuradio mailing list USRP:

41 Questions?

GNU Radio An introduction

GNU Radio An introduction An introduction By Maryam Taghizadeh Dehkordi Outline Introduction What is a? Architecture Hardware Architecture Software Architecture Programming the " Hello World" FM radio Software development References

More information

Software Radio, GNU Radio, and the USRP Product Family

Software Radio, GNU Radio, and the USRP Product Family Software Radio, GNU Radio, and the USRP Product Family Open Hardware for Software Radio Matt Ettus, matt@ettus.com Software Radio Simple, general-purpose hardware Do as much as possible in software Everyone's

More information

Cognitive Radio for Future Internet Survey on CR Testbed & Product

Cognitive Radio for Future Internet Survey on CR Testbed & Product Cognitive Radio for Future Internet Survey on CR Testbed & Product Munhwan Choi Multimedia & Wireless Networking Laboratory School of Electrical Engineering and INMC Seoul National University, Seoul, Korea

More information

Outline. What is GNU Radio? Basic Concepts Developing Applications

Outline. What is GNU Radio? Basic Concepts Developing Applications GNU Radio Outline What is GNU Radio? Basic Concepts Developing Applications 2 What is GNU Radio? Software toolkit for signal processing Software radio construction Rapid development USRP (Universal Software

More information

Tutorial 3: Entering the World of GNU Software Radio

Tutorial 3: Entering the World of GNU Software Radio Tutorial 3: Entering the World of GNU Software Radio Dawei Shen August 3, 2005 Abstract This article provides an overview of the GNU Radio toolkit for building software radios. This tutorial is a modified

More information

Introduction of USRP and Demos. by Dong Han & Rui Zhu

Introduction of USRP and Demos. by Dong Han & Rui Zhu Introduction of USRP and Demos by Dong Han & Rui Zhu Introduction USRP(Universal Software Radio Peripheral ): A computer-hosted software radio, which is commonly used by research labs, universities. Motherboard

More information

From Antenna to Bits:

From Antenna to Bits: From Antenna to Bits: Wireless System Design with MATLAB and Simulink Cynthia Cudicini Application Engineering Manager MathWorks cynthia.cudicini@mathworks.fr 1 Innovations in the World of Wireless Everything

More information

Cognitive Radio Platform Technology

Cognitive Radio Platform Technology Cognitive Radio Platform Technology Ivan Seskar Rutgers, The State University of New Jersey www.winlab.rutgers.edu seskar (at) winlab (dot) rutgers (dot) edu Complexity/Performance Tradeoffs Efficient

More information

TSKS01 Digital Communication

TSKS01 Digital Communication Made by Ettus Research 2011-09-20 TSKS01 Digital Communication - Lecture 5 Introduction to Python 2011-09-20 TSKS01 Digital Communication - Lecture 5 Fixed replaceable RF frontends Programmable FPGA for

More information

Spectrum Detector for Cognitive Radios. Andrew Tolboe

Spectrum Detector for Cognitive Radios. Andrew Tolboe Spectrum Detector for Cognitive Radios Andrew Tolboe Motivation Currently in the United States the entire radio spectrum has already been reserved for various applications by the FCC. Therefore, if someone

More information

Software radio. Software program. What is software? 09/05/15 Slide 2

Software radio. Software program. What is software? 09/05/15 Slide 2 Software radio Software radio Software program What is software? 09/05/15 Slide 2 Software radio Software program What is software? Machine readable instructions that direct processor to do specific operations

More information

Spectral Monitoring/ SigInt

Spectral Monitoring/ SigInt RF Test & Measurement Spectral Monitoring/ SigInt Radio Prototyping Horizontal Technologies LabVIEW RIO for RF (FPGA-based processing) PXI Platform (Chassis, controllers, baseband modules) RF hardware

More information

SDR Platforms for Research on Programmable Wireless Networks

SDR Platforms for Research on Programmable Wireless Networks SDR Platforms for Research on Programmable Wireless Networks John Chapin jchapin@vanu.com Presentation to NSF NeTS Informational Meeting 2/5/2004 Outline SDR components / terminology Example SDR systems

More information

Prototyping Next-Generation Communication Systems with Software-Defined Radio

Prototyping Next-Generation Communication Systems with Software-Defined Radio Prototyping Next-Generation Communication Systems with Software-Defined Radio Dr. Brian Wee RF & Communications Systems Engineer 1 Agenda 5G System Challenges Why Do We Need SDR? Software Defined Radio

More information

2015 The MathWorks, Inc. 1

2015 The MathWorks, Inc. 1 2015 The MathWorks, Inc. 1 What s Behind 5G Wireless Communications? 서기환과장 2015 The MathWorks, Inc. 2 Agenda 5G goals and requirements Modeling and simulating key 5G technologies Release 15: Enhanced Mobile

More information

Software Radio Network Testbed

Software Radio Network Testbed Software Radio Network Testbed Senior design student: Ziheng Gu Advisor: Prof. Liuqing Yang PhD Advisor: Xilin Cheng 1 Overview Problem and solution What is GNU radio and USRP Project goal Current progress

More information

CIS 632 / EEC 687 Mobile Computing

CIS 632 / EEC 687 Mobile Computing CIS 632 / EEC 687 Mobile Computing MC Platform #4 USRP & GNU Radio Chansu Yu 1 Tutorial at IEEE DySpan Conference, 2007 Understanding the Issues in SD Cognitive Radio Jeffrey H. Reed, Charles W. Bostian,

More information

DTP4700 Next Generation Software Defined Radio Platform

DTP4700 Next Generation Software Defined Radio Platform DTP4700 Next Generation Software Defined Radio Platform Spectra DTP4700 is a wideband, high-performance baseband and RF Software Defined Radio (SDR) development and test platform. Spectra DTP4700 supports

More information

Software Radio: An Enabling Technology for Mobile Communications

Software Radio: An Enabling Technology for Mobile Communications Software Radio: An Enabling Technology for Mobile Communications Carles Vilella, Joan L. Pijoan Dep. Communications and Signal Theory La Salle Engineering and Architecture Ramon Llull University Barcelona,

More information

A GENERIC ARCHITECTURE FOR SMART MULTI-STANDARD SOFTWARE DEFINED RADIO SYSTEMS

A GENERIC ARCHITECTURE FOR SMART MULTI-STANDARD SOFTWARE DEFINED RADIO SYSTEMS A GENERIC ARCHITECTURE FOR SMART MULTI-STANDARD SOFTWARE DEFINED RADIO SYSTEMS S.A. Bassam, M.M. Ebrahimi, A. Kwan, M. Helaoui, M.P. Aflaki, O. Hammi, M. Fattouche, and F.M. Ghannouchi iradio Laboratory,

More information

THE APPROACH OF SELEX COMMUNICATIONS ON SOFTWARE DEFINED RADIO

THE APPROACH OF SELEX COMMUNICATIONS ON SOFTWARE DEFINED RADIO THE APPROACH OF SELEX COMMUNICATIONS ON SOFTWARE DEFINED RADIO Loris Schettino (SELEX Communications, Pomezia (Rome), Italy, loris.schettino@selex-comms.com ); Virgilio Cruciani (SELEX Communications,

More information

SDR Demonstra2on. Overview

SDR Demonstra2on. Overview SDR Demonstra2on James Flynn Sharlene Katz Overview USRP GNU Radio Applica2on NB Receiver Example Demonstra2ons Next Mee2ng 1 Sampling T t ADC DAC f m f m f Nyquist Rate: T < 1 2 f m 1 f s < 1 2 f m f

More information

What s Behind 5G Wireless Communications?

What s Behind 5G Wireless Communications? What s Behind 5G Wireless Communications? Marc Barberis 2015 The MathWorks, Inc. 1 Agenda 5G goals and requirements Modeling and simulating key 5G technologies Release 15: Enhanced Mobile Broadband IoT

More information

What is New in Wireless System Design

What is New in Wireless System Design What is New in Wireless System Design Houman Zarrinkoub, PhD. houmanz@mathworks.com 2015 The MathWorks, Inc. 1 Agenda Landscape of Wireless Design Our Wireless Initiatives Antenna-to-Bit simulation Smart

More information

T. Rétornaz 1, J.M. Friedt 1, G. Martin 2 & S. Ballandras 1,2. 6 juillet Senseor, Besançon 2 FEMTO-ST/CNRS, Besançon

T. Rétornaz 1, J.M. Friedt 1, G. Martin 2 & S. Ballandras 1,2. 6 juillet Senseor, Besançon 2 FEMTO-ST/CNRS, Besançon USRP and T. Rétornaz 1, J.M. Friedt 1, G. Martin 2 & S. Ballandras 1,2 1 Senseor, Besançon 2 FEMTO-ST/CNRS, Besançon 6 juillet 2009 1 / 25 Radiofrequency circuit : ˆ basic blocks assembled : fragile and

More information

Supplemental Slides: MIMO Testbed Development at the MPRG Lab

Supplemental Slides: MIMO Testbed Development at the MPRG Lab Supplemental Slides: MIMO Testbed Development at the MPRG Lab Raqibul Mostafa Jeffrey H. Reed Slide 1 Overview Space Time Coding (STC) Overview Virginia Tech Space Time Adaptive Radio (VT-STAR) description:

More information

Senior Design and Graduate Projects Using Software Defined Radio (SDR)

Senior Design and Graduate Projects Using Software Defined Radio (SDR) Senior Design and Graduate Projects Using Software Defined Radio (SDR) 1 PROF. SHARLENE KATZ PROF. JAMES FLYNN PROF. DAVID SCHWARTZ Overview What is a Communications System? Traditional hardware radio

More information

DRS Signal Solutions. Capabilities and Product Overview. February 2014 Condensed Version

DRS Signal Solutions. Capabilities and Product Overview. February 2014 Condensed Version DRS Signal Solutions Capabilities and Product Overview February 2014 Condensed Version Information included herein has been determined to not contain any controlled technical data or technology as these

More information

Waveform Generation and Testing with Software-Defined Radios (SDR) and RF instruments

Waveform Generation and Testing with Software-Defined Radios (SDR) and RF instruments Waveform Generation and Testing with Software-Defined Radios (SDR) and RF instruments Houman Zarrinkoub, PhD. Product Manager Signal Processing & Communications houmanz@mathworks.com 2015 The MathWorks,

More information

Spectrum & Cognitive Radio Research

Spectrum & Cognitive Radio Research Spectrum & Cognitive Radio Research Narayan Mandayam Rutgers University www.winlab.rutgers.edu/~narayan Email: narayan@winlab.rutgers.edu The Cognitive Radio Team @ WINLAB Narayan Mandayam Christopher

More information

Hardware Architecture of Software Defined Radio (SDR)

Hardware Architecture of Software Defined Radio (SDR) Hardware Architecture of Software Defined Radio (SDR) Tassadaq Hussain Assistant Professor: Riphah International University Research Collaborations: Microsoft Barcelona Supercomputing Center University

More information

InDepth GNU Radio: Tools for Exploring the Radio Frequency Spectrum

InDepth GNU Radio: Tools for Exploring the Radio Frequency Spectrum InDepth GNU Radio: Tools for Exploring the Radio Frequency Spectrum Bringing the code as close to the antenna as possible is the goal of software radio. by Eric Blossom Software radio is the technique

More information

Software Defined Radio: Enabling technologies and Applications

Software Defined Radio: Enabling technologies and Applications Mengduo Ma Cpr E 583 September 30, 2011 Software Defined Radio: Enabling technologies and Applications A Mini-Literature Survey Abstract The survey paper identifies the enabling technologies and research

More information

Programmable Wireless Networking Overview

Programmable Wireless Networking Overview Programmable Wireless Networking Overview Dr. Joseph B. Evans Program Director Computer and Network Systems Computer & Information Science & Engineering National Science Foundation NSF Programmable Wireless

More information

Production Test and Spectral Monitoring

Production Test and Spectral Monitoring 1 Production Test and Spectral Monitoring Stephen Plumb Key RF Building Blocks Symbol Name Types Function Amplifier (2 port) Power Amplifier Low Noise Amplifier Amplify signal before transmission (high

More information

ELEC RADAR FRONT-END SUMMARY

ELEC RADAR FRONT-END SUMMARY ELEC Radar Front-End is designed for FMCW (including CW) radar application. The output frequency of each RX provides range, speed, and amplitude information to DSP. It will detect target azimuth angle

More information

AM and FM MODULATION Lecture 5&6

AM and FM MODULATION Lecture 5&6 AM and FM MODULATION Lecture 5&6 Ir. Muhamad Asvial, MEng., PhD Center for Information and Communication Engineering Research Electrical Engineering Department University of Indonesia Kampus UI Depok,

More information

ni.com Mounzer saleh Applications engineer Tel:

ni.com Mounzer saleh Applications engineer   Tel: Mounzer saleh Applications engineer Email: mounzer.saleh@ Tel: +961 1 33 28 28 An Introduction to Software Defined Radio With LabVIEW and NI USRP Hands-on Course Objectives Exercise 1 Acquire an RF signal

More information

What s Behind 5G Wireless Communications?

What s Behind 5G Wireless Communications? What s Behind 5G Wireless Communications? Tabrez Khan Application Engineering Group 2015 The MathWorks, Inc. 1 Agenda 5G goals and requirements Modeling and simulating key 5G technologies 5G development

More information

PoC #1 On-chip frequency generation

PoC #1 On-chip frequency generation 1 PoC #1 On-chip frequency generation This PoC covers the full on-chip frequency generation system including transport of signals to receiving blocks. 5G frequency bands around 30 GHz as well as 60 GHz

More information

DI-6X. LXI solution class A and B compliant for multipurpose enviroments. Digital Instruments S.r.l.

DI-6X. LXI solution class A and B compliant for multipurpose enviroments. Digital Instruments S.r.l. LXI solution class A and B compliant for multipurpose enviroments 1 Overview is a very flexible XILINX based platform for a wide range of applications. The Ultimate XILINX VirtexVI with different high

More information

INTEGRATING THE BATTLESPACE WITH SOFTWARE-BASED COMMUNICATIONS

INTEGRATING THE BATTLESPACE WITH SOFTWARE-BASED COMMUNICATIONS BOEING LIMITED INTEGRATING THE BATTLESPACE WITH SOFTWARE-BASED COMMUNICATIONS Alejandro M. Lopez Director Communication Systems Boeing Integrated Defense Systems OMG SBC Workshop August 18, 2005 03SB1003O.1

More information

DURIP Distributed SDR testbed for Collaborative Research. Wednesday, November 19, 14

DURIP Distributed SDR testbed for Collaborative Research. Wednesday, November 19, 14 DURIP Distributed SDR testbed for Collaborative Research Distributed Software Defined Radar Testbed Collaborative research resource based on software defined radar (SDR) platforms that can adaptively modify

More information

A Novel Design In Digital Communication Using Software Defined Radio

A Novel Design In Digital Communication Using Software Defined Radio A Novel Design In Digital Communication Using Software Defined Radio Mandava Akhil Kumar 1, Pillem Ramesh 2 1 Student, ECE,KL UNIVERSITY, VADDESWARAM,A.P,INDIA 2 Assistant Proffesor,ECE,KL University,VADDESWARAM,A.P,INDIA

More information

A Rapid Graphical Programming Approach to SDR Design and Prototyping with LabVIEW and the USRP

A Rapid Graphical Programming Approach to SDR Design and Prototyping with LabVIEW and the USRP A Rapid Graphical Programming Approach to SDR Design and Prototyping with LabVIEW and the USRP Filip Langenaken Academic Program Manager Benelux & Nordic National Instruments NI-USRP: a Platform for SDR

More information

Development of Software Defined Radio (SDR) Receiver

Development of Software Defined Radio (SDR) Receiver Journal of Engineering and Technology of the Open University of Sri Lanka (JET-OUSL), Vol.5, No.1, 2017 Development of Software Defined Radio (SDR) Receiver M.H.M.N.D. Herath 1*, M.K. Jayananda 2, 1Department

More information

Developing a Generic Software-Defined Radar Transmitter using GNU Radio

Developing a Generic Software-Defined Radar Transmitter using GNU Radio Developing a Generic Software-Defined Radar Transmitter using GNU Radio A thesis submitted in partial fulfilment of the requirements for the degree of Master of Sciences (Defence Signal Information Processing)

More information

NI Technical Symposium ni.com

NI Technical Symposium ni.com NI Technical Symposium 2016 1 Build 5G Systems Today Avichal Kulshrestha 2 How We Consume Data is Changing 3 Where We Are Today Explosion of wireless data and connected devices Last year s mobile data

More information

What is a Communications System?

What is a Communications System? Introduction to Communication Systems: An Overview James Flynn Sharlene Katz What is a Communications System? A communications system transfers an information bearing signal from a source to one or more

More information

SourceSync. Exploiting Sender Diversity

SourceSync. Exploiting Sender Diversity SourceSync Exploiting Sender Diversity Why Develop SourceSync? Wireless diversity is intrinsic to wireless networks Many distributed protocols exploit receiver diversity Sender diversity is a largely unexplored

More information

Implementing Software Defined Radio a 16 QAM System using the USRP2 Board

Implementing Software Defined Radio a 16 QAM System using the USRP2 Board Implementing Software Defined Radio a 16 QAM System using the USRP2 Board Functional Requirements List and Performance Specifications Patrick Ellis & Scott Jaris Dr. In Soo Ahn & Dr. Yufeng Lu December

More information

Technician License Course Chapter 2. Lesson Plan Module 3 Modulation and Bandwidth

Technician License Course Chapter 2. Lesson Plan Module 3 Modulation and Bandwidth Technician License Course Chapter 2 Lesson Plan Module 3 Modulation and Bandwidth The Basic Radio Station What Happens During Radio Communication? Transmitting (sending a signal): Information (voice, data,

More information

Addressing the Design-to-Test Challenges for SDR and Cognitive Radio

Addressing the Design-to-Test Challenges for SDR and Cognitive Radio Addressing the Design-to-Test Challenges Bob Cutler and Greg Jue, Agilent Technologies Software Defined Radios Flexibility Radio can support multiple waveforms: Different formats, Different revisions of

More information

RADAR Simplified. Wideband & Ultra-wideband radar solutions for HF, VHF, UHF & SHF bands

RADAR Simplified. Wideband & Ultra-wideband radar solutions for HF, VHF, UHF & SHF bands RADAR Simplified Wideband & Ultra-wideband radar solutions for HF, VHF, UHF & SHF bands 10 GIGABIT SENSOR PROCESSING FAST, SCALABLE & SYNCHRONIZED D-TA Systems has created sensor processing solutions that

More information

Ettus Research USRP. Tom Tsou 3rd OpenAirInterface Workshop April 28, 2017

Ettus Research USRP. Tom Tsou 3rd OpenAirInterface Workshop April 28, 2017 Ettus Research USRP Tom Tsou tom.tsou@ettus.com 3rd OpenAirInterface Workshop April 28, 2017 Agenda Company Overview USRP Software Ecosystem Product Line B-Series (Bus) N-Series (Network) X-Series (High

More information

VITA 49 VITA Radio Transport (VRT) A Spectrum Language for Software Defined Radios

VITA 49 VITA Radio Transport (VRT) A Spectrum Language for Software Defined Radios VITA 49 VITA Radio Transport (VRT) A Spectrum Language for Software Defined Radios 9-Sept-2014 Presenter: Robert Normoyle, JHU/APL Program Manager: Debra Hurt, JHU/APL This work is funded by Office of

More information

INTRODUCTION TO COMMUNICATION SYSTEMS AND TRANSMISSION MEDIA

INTRODUCTION TO COMMUNICATION SYSTEMS AND TRANSMISSION MEDIA COMM.ENG INTRODUCTION TO COMMUNICATION SYSTEMS AND TRANSMISSION MEDIA 9/9/2017 LECTURES 1 Objectives To give a background on Communication system components and channels (media) A distinction between analogue

More information

Week 2. Topics in Wireless Systems EE584-F 03 9/9/2003. Copyright 2003 Stevens Institute of Technology - All rights reserved

Week 2. Topics in Wireless Systems EE584-F 03 9/9/2003. Copyright 2003 Stevens Institute of Technology - All rights reserved Week Topics in Wireless Systems 43 0 th Generation Wireless Systems Mobile Telephone Service Few, high-power, long-range basestations -> No sharing of spectrum -> few users -> expensive 44 Cellular Systems

More information

mm Wave Communications J Klutto Milleth CEWiT

mm Wave Communications J Klutto Milleth CEWiT mm Wave Communications J Klutto Milleth CEWiT Technology Options for Future Identification of new spectrum LTE extendable up to 60 GHz mm Wave Communications Handling large bandwidths Full duplexing on

More information

DIGITAL PRE-DISTORTION LINEARIZER FOR A REALIZATION OF AUTOMATIC CALIBRATION UNIT

DIGITAL PRE-DISTORTION LINEARIZER FOR A REALIZATION OF AUTOMATIC CALIBRATION UNIT DIGITAL PRE-DISTORTION LINEARIZER FOR A REALIZATION OF AUTOMATIC CALIBRATION UNIT Tien Dzung DOAN, Chih Fung LAM, Kei SAKAGUCHI, Jun-ichi TAKADA, Kiyomichi ARAKI Graduate School of Science and Engineering,

More information

Overview: Trends and Implementation Challenges for Multi-Band/Wideband Communication

Overview: Trends and Implementation Challenges for Multi-Band/Wideband Communication Overview: Trends and Implementation Challenges for Multi-Band/Wideband Communication Mona Mostafa Hella Assistant Professor, ESCE Department Rensselaer Polytechnic Institute What is RFIC? Any integrated

More information

The Rise of All-Band All-Mode Radio

The Rise of All-Band All-Mode Radio The Rise of All-Band All-Mode Radio Steve Ellingson and S.M. Shajedul Hasan Bradley Dept. of Electrical & Computer Engineering Virginia Polytechnic Institute & State University January 9, 2007 Wireless

More information

Cognitive Radio: Fundamentals and Opportunities

Cognitive Radio: Fundamentals and Opportunities San Jose State University From the SelectedWorks of Robert Henry Morelos-Zaragoza Fall August 24, 2007 Cognitive Radio: Fundamentals and Opportunities Robert H Morelos-Zaragoza, San Jose State University

More information

Bridge RF Design and Test Applications with NI SDR Platforms

Bridge RF Design and Test Applications with NI SDR Platforms Bridge RF Design and Test Applications with NI SDR Platforms Jason Strydom Application Engineer National Instruments - Midrand The National Instruments Vision To do for test and measurement what the spreadsheet

More information

Implementation of a Channel Sounder using GNU Radio Opensource SDR Platform

Implementation of a Channel Sounder using GNU Radio Opensource SDR Platform THE INSTITUTE OF ELECTRONICS, INFORMATION AND COMMUNICATION ENGINEERS TECHNICAL REPORT OF IEICE. Implementation of a Channel Sounder using GNU Radio Opensource SDR Platform Mutsawashe GAHADZA, Minseok

More information

Project in Wireless Communication Lecture 7: Software Defined Radio

Project in Wireless Communication Lecture 7: Software Defined Radio Project in Wireless Communication Lecture 7: Software Defined Radio FREDRIK TUFVESSON ELECTRICAL AND INFORMATION TECHNOLOGY Tufvesson, EITN21, PWC lecture 7, Nov. 2018 1 Project overview, part one: the

More information

A SOFTWARE RE-CONFIGURABLE ARCHITECTURE FOR 3G AND WIRELESS SYSTEMS

A SOFTWARE RE-CONFIGURABLE ARCHITECTURE FOR 3G AND WIRELESS SYSTEMS A SOFTWARE RE-CONFIGURABLE ARCHITECTURE FOR 3G AND WIRELESS SYSTEMS E. Sereni 1, G. Baruffa 1, F. Frescura 1, P. Antognoni 2 1 DIEI - University of Perugia, Perugia, ITALY 2 Digilab2000 - Foligno (PG)

More information

NATecS 2017 May, 16 th 17 th. Presentation #22 Opportunities for SDR

NATecS 2017 May, 16 th 17 th. Presentation #22 Opportunities for SDR Sales NATecS 2017 May, 16 th 17 th Presentation #22 Opportunities for SDR slide 1 l 2017 N.A.T. GmbH l All trademarks and logos are property of their respective holders Agenda Definition of SDR Levels

More information

Lecture 1 Introduction to Communication Systems. ECE4900/ECE6720 Digital Communications

Lecture 1 Introduction to Communication Systems. ECE4900/ECE6720 Digital Communications ECE4900/ECE6720: Digital Communications 1 Lecture 1 Introduction to Communication Systems What is a Communication System? Smart Phone 2 What is a Communication System? Transceivers in Smart Cars 3 What

More information

PRINCIPLES OF COMMUNICATION SYSTEMS. Lecture 1- Introduction Elements, Modulation, Demodulation, Frequency Spectrum

PRINCIPLES OF COMMUNICATION SYSTEMS. Lecture 1- Introduction Elements, Modulation, Demodulation, Frequency Spectrum PRINCIPLES OF COMMUNICATION SYSTEMS Lecture 1- Introduction Elements, Modulation, Demodulation, Frequency Spectrum Topic covered Introduction to subject Elements of Communication system Modulation General

More information

A review paper on Software Defined Radio

A review paper on Software Defined Radio A review paper on Software Defined Radio 1 Priyanka S. Kamble, 2 Bhalchandra B. Godbole Department of Electronics Engineering K.B.P.College of Engineering, Satara, India. Abstract -In this paper, we summarize

More information

CSC344 Wireless and Mobile Computing. Department of Computer Science COMSATS Institute of Information Technology

CSC344 Wireless and Mobile Computing. Department of Computer Science COMSATS Institute of Information Technology CSC344 Wireless and Mobile Computing Department of Computer Science COMSATS Institute of Information Technology Wireless Physical Layer Concepts Part III Noise Error Detection and Correction Hamming Code

More information

DEVELOPMENT OF SOFTWARE RADIO PROTOTYPE

DEVELOPMENT OF SOFTWARE RADIO PROTOTYPE DEVELOPMENT OF SOFTWARE RADIO PROTOTYPE Isao TESHIMA; Kenji TAKAHASHI; Yasutaka KIKUCHI; Satoru NAKAMURA; Mitsuyuki GOAMI; Communication Systems Development Group, Hitachi Kokusai Electric Inc., Tokyo,

More information

Research on key digital modulation techniques using GNU Radio

Research on key digital modulation techniques using GNU Radio Research on key digital modulation techniques using GNU Radio Tianning Shen Yuanchao Lu I. Introduction Software Defined Radio (SDR) is the technique that uses software to realize the function of the traditional

More information

SDR TESTBENCH FOR SATELLITE COMMUNICATIONS

SDR TESTBENCH FOR SATELLITE COMMUNICATIONS SDR TESTBENCH FOR SATELLITE COMMUNICATIONS Kris Huber (Array Systems Computing Inc., Toronto, Ontario, Canada, khuber@array.ca); Weixiong Lin (Array Systems Computing Inc., Toronto, Ontario, Canada). ABSTRACT

More information

Software Defined Radio! Primer + Project! Gordie Neff, N9FF! Columbia Amateur Radio Club! March 2016!

Software Defined Radio! Primer + Project! Gordie Neff, N9FF! Columbia Amateur Radio Club! March 2016! Software Defined Radio! Primer + Project! Gordie Neff, N9FF! Columbia Amateur Radio Club! March 2016! Overview! What is SDR?! Why should I care?! SDR Concepts! Potential SDR project! 2! Approach:! This

More information

A GENERAL SYSTEM DESIGN & IMPLEMENTATION OF SOFTWARE DEFINED RADIO SYSTEM

A GENERAL SYSTEM DESIGN & IMPLEMENTATION OF SOFTWARE DEFINED RADIO SYSTEM A GENERAL SYSTEM DESIGN & IMPLEMENTATION OF SOFTWARE DEFINED RADIO SYSTEM 1 J. H.VARDE, 2 N.B.GOHIL, 3 J.H.SHAH 1 Electronics & Communication Department, Gujarat Technological University, Ahmadabad, India

More information

CNS - Opportunity for technology convergence

CNS - Opportunity for technology convergence CNS - Opportunity for technology convergence Military CNS Technical Implementation Civil-Military ATM Coordination (CMAC) 24-25 sep 12 Okko F. Bleeker Director European R&D 2012 Rockwell Collins, Inc.

More information

INSTITUT D ÉLECTRONIQUE ET DE TÉLÉCOMMUNICATIONS DE RENNES "#$ " UMR 6164

INSTITUT D ÉLECTRONIQUE ET DE TÉLÉCOMMUNICATIONS DE RENNES #$  UMR 6164 ! "#$ " UMR 6164 1 Cognitive Radio functional requirements Cognitive Radio system requirements Flexible radio UWB SDR and UWB SDR-compatible UWB Conclusion NEWCOM Workshop at IST Mobile Summit June 2006

More information

High Performance Cognitive Radio Platform with Integrated Physical & Network Layer Capabilities

High Performance Cognitive Radio Platform with Integrated Physical & Network Layer Capabilities High Performance Cognitive Radio Platform with Integrated Physical & Network Layer Capabilities Bryan Ackland, Ivan Seskar WINLAB, Rutgers University bda@winlab.rutgers.edu seskar@winlab.rutgers.edu www.winlab.rutgers.edu

More information

New Technologies for Software Defined Radio. Farris Alhorr. National Instruments Business Development Manager, IndRAA

New Technologies for Software Defined Radio. Farris Alhorr. National Instruments Business Development Manager, IndRAA New Technologies for Software Defined Radio Farris Alhorr National Instruments Business Development Manager, IndRAA Farris.alhorr@ni.com ni.com The World of Converged Devices More capability defined in

More information

Developing and Prototyping Next-Generation Communications Systems

Developing and Prototyping Next-Generation Communications Systems Developing and Prototyping Next-Generation Communications Systems Dr. Amod Anandkumar Team Lead Signal Processing and Communications Application Engineering Group 2015 The MathWorks, Inc. 1 Proliferation

More information

Experimental study on Wide Band FM Receiver using GNURadio and RTL-SDR

Experimental study on Wide Band FM Receiver using GNURadio and RTL-SDR Experimental study on Wide Band FM Receiver using GNURadio and RTL-SDR Khyati Vachhani Assistant Professor, Electrical Dept. Nirma University, Ahmedabad, India Email: khyati.vachhani@nirmauni.ac.in Rao

More information

ELT Radio Architectures and Signal Processing. Motivation, Some Background & Scope

ELT Radio Architectures and Signal Processing. Motivation, Some Background & Scope Introduction ELT-44007/Intro/1 ELT-44007 Radio Architectures and Signal Processing Motivation, Some Background & Scope Markku Renfors Department of Electronics and Communications Engineering Tampere University

More information

SCA COMPATIBLE SOFTWARE DEFINED WIDEBAND RECEIVER FOR REAL TIME ENERGY DETECTION AND MODULATION RECOGNITION

SCA COMPATIBLE SOFTWARE DEFINED WIDEBAND RECEIVER FOR REAL TIME ENERGY DETECTION AND MODULATION RECOGNITION SCA COMPATIBLE SOFTWARE DEFINED WIDEBAND RECEIVER FOR REAL TIME ENERGY DETECTION AND MODULATION RECOGNITION Peter Andreadis, Martin Phisel, Robin Addison CRC, Ottawa, Canada (peter.andreadis@crc.ca ) Luca

More information

Software Defined Radio in Ham Radio Dennis Silage K3DS TS EPA Section ARRL

Software Defined Radio in Ham Radio Dennis Silage K3DS TS EPA Section ARRL Software Defined Radio in Ham Radio Dennis Silage K3DS silage@arrl.net TS EPA Section ARRL TUARC K3TU SDR in HR The crystal radio was once a simple introduction to radio electronics and Amateur Radio.

More information

Tunable Wideband & Ultra-Wideband Multi- Antenna Transceivers with Integrated Recording, Playback & Processing

Tunable Wideband & Ultra-Wideband Multi- Antenna Transceivers with Integrated Recording, Playback & Processing 2016 Multi-Antenna Transceiver Systems Tunable Wideband & Ultra-Wideband Multi- Antenna Transceivers with Integrated Recording, Playback & Processing --- For ES, DF, COMS & EA 1 Multi-Antenna Systems D-TA

More information

The Future of Software Radio

The Future of Software Radio The Future of Software Radio Virginia Tech VIRGINIA POLYTECHNIC INSTITUTE 1 8 7 2 AND STATE UNIVERSITY Dr. Jeffrey H. Reed Mobile and Portable Radio Research Group (MPRG) Virginia Tech Blacksburg, VA reedjh@vt.edu

More information

To Fragment or Not To Fragment: Viability of NC OFDMA in Multihop Networks. Muhammad Nazmul Islam WINLAB, Rutgers University

To Fragment or Not To Fragment: Viability of NC OFDMA in Multihop Networks. Muhammad Nazmul Islam WINLAB, Rutgers University To Fragment or Not To Fragment: Viability of NC OFDMA in Multihop Networks Muhammad Nazmul Islam WINLAB, Rutgers University Availability of Non Contiguous Spectrum Demand for wireless services is increasing

More information

A Design-to-Test Methodology for SDR and Cognitive Radio

A Design-to-Test Methodology for SDR and Cognitive Radio A Design-to-Test Methodology for SDR and Cognitive Radio Authors: Greg Jue & Bob Cutler, Agilent Technologies Agenda SDR Waveform Challenges SDR Waveform Design SDR Hardware Testing Cognitive Radio Algorithm

More information

Recap of Last 2 Classes

Recap of Last 2 Classes Recap of Last 2 Classes Transmission Media Analog versus Digital Signals Bandwidth Considerations Attentuation, Delay Distortion and Noise Nyquist and Shannon Analog Modulation Digital Modulation What

More information

5G 무선통신시스템설계 : WLAN/LTE/5G

5G 무선통신시스템설계 : WLAN/LTE/5G 1 5G 무선통신시스템설계 : WLAN/LTE/5G 김종남 Application Engineer 2017 The MathWorks, Inc. 2 Agenda Innovations in Mobile Communications Waveform Generation and End-to-end Simulation WLAN, LTE, 5G (FBMC, UFMC) RF

More information

RF and Microwave Test and Design Roadshow Cape Town & Midrand

RF and Microwave Test and Design Roadshow Cape Town & Midrand RF and Microwave Test and Design Roadshow Cape Town & Midrand Advanced PXI Technologies Signal Recording, FPGA s, and Synchronization Philip Ehlers Outline Introduction to the PXI Architecture PXI Data

More information

Some SDR Research at Virginia Tech

Some SDR Research at Virginia Tech Some SDR Research at Virginia Tech Jeffrey H. Reed Mobile and Portable Radio Research Group () Virginia Tech reedjh@vt.edu, (540)231-2972 June 22 nd, 2004 Research Overview Configurable Computing Analysis

More information

COGEU is a Specific Target Research Project (STREP) supported by the 7th Framework Programme, Contract number:

COGEU is a Specific Target Research Project (STREP) supported by the 7th Framework Programme, Contract number: COGEU is a Specific Target Research Project (STREP) supported by the 7th Framework Programme, Contract number: 248560 Dr. Tim Forde Dr. Tim Forde WHAT IS COGEU? COGEU The COGEU project is a composite of

More information

C700 A New Domain in Radio System Design & Verification

C700 A New Domain in Radio System Design & Verification C700 A New Domain in Radio System Design & Verification C700 A New Domain in Radio System Design & Verification A modular SDR (Software-Defined Radio) development and verification platform that allows

More information

GNU Radio as a Research and Development Tool for RFID Applications

GNU Radio as a Research and Development Tool for RFID Applications GNU Radio as a Research and Development Tool for RFID Applications 25 September 2012 Christopher R. Valenta Agenda Overview of RFID and applications RFID/RFID-enabled sensors development GNU Radio as a

More information

5G, WLAN, and LTE Wireless Design with MATLAB

5G, WLAN, and LTE Wireless Design with MATLAB 5G, WLAN, and LTE Wireless Design with MATLAB Marc Barberis Application Engineering Group 2017 The MathWorks, Inc. 1 Agenda The 5G Landscape Designing 5G Systems Generating waveforms Designing baseband

More information

RADIO FREQUENCY AND CHANNEL INVESTIGATION USING SOFTWARE-DEFINED RADIO IN MATLAB AND SIMULINK ENVIRONMENT

RADIO FREQUENCY AND CHANNEL INVESTIGATION USING SOFTWARE-DEFINED RADIO IN MATLAB AND SIMULINK ENVIRONMENT Nigerian Journal of Technology (NIJOTECH) Vol. 37, No. 4, October 2018, pp. 1049 1057 Copyright Faculty of Engineering, University of Nigeria, Nsukka, Print ISSN: 0331-8443, Electronic ISSN: 2467-8821

More information

Universal Software Defined Radio Development Platform

Universal Software Defined Radio Development Platform UNCLASSIFIED/UNLIMITED Universal Software Defined Radio Development Platform Dr. Bertalan Eged*, Benjamin Babják** *Sagax Communication Ltd., Haller u. 11-13. Budapest 1096 Hungary **Budapest University

More information