Porting the p receiver on the ExpressMIMO Platform (LabSession OAI 2)

Size: px
Start display at page:

Download "Porting the p receiver on the ExpressMIMO Platform (LabSession OAI 2)"

Transcription

1 Porting the p receiver on the ExpressMIMO Platform (LabSession OAI 2)

2 Introduction and Motivation OpenAirInterface Platform: Protoype Design for Software Defined Radio (SDR) Applications Support of a wide range of different wireless communication standards like UMTS, WLAN a/g/p, WiMAX, GSM,... Design can easily be adapted to future standards like LTS Simultaneous (multimodal) processing of different standards Software Model to Emulate all processes on the OpenAirInterface Platform Transceiver Validation in a pure SW environment

3 What we will show you in this Lab 1) p receiver emulation in a pure SW environment using the library for ExpressMIMO baseband (libembb) 2) p receiver demonstration on the real HW platform

4 Transceiver Mapping - steps to follow 1. Emulation of the transceiver using the Library for ExpressMIMO baseband (libembb) Functional verification of the transceiver code in a pure SW environment (C/C++) Bit-accurate representation of the real DSP engines Synchronous execution of the DSPs Identification of the required DSPs and design of algorithms that can be executed by the available ressources First runtime analysis considering the pure processing time of the DSP engines Can the standard be processed in realtime? Identification of bottlenecks

5 Transceiver Mapping - steps to follow Cycle accurate HW/SW co-simulation (Modelsim) Only appropriate for standards with a short packet / frame length Performance improvement of latency critical standards by using execution parallelism on the platform o parallel processing of DSP engines o programming of the next operation while the previous one is not finished o DMA transfers in parallel to IP processing More realistic estimation of the execution time as the required control flow can be measured Analysis of the difference between a distributed and a global control flow

6 Transceiver Mapping - steps to follow Cycle accurate HW/SW co-simulation (Modelsim) Which operations can run in parallel? Can the next operation already be programmed while the current one is still running? Is it possible to precompute the commands and to store them in a local memory? (depends on the number of parameters changing dynamically during runtime)

7 Transceiver Mapping - steps to follow Receiver Validation on the HW Platform First, validation using a known snapshot integrated in the source code Second, validation using real test signals received through the RF interface Only appropriate validation method for standards with a long packet / frame length (e.g. DAB)

8 802.11p PHY Overview Standard currently in draft Latest version D7.00 May 2009 PHY layer defined in IEEE / 2007, Section 17 Same as g (OFDM) but with 10MHz bandwidth Latency critical short packet lengths acknowledgement packet must be send within a specific time LTE FM, DAB/DMB, SDARS, abg, Bluetooth p, Active Modules: WLAN Car2Car (e.g p) Long range & Broadcast (e.g. DAB)

9 802.11p OFDM Parameters

10 802.11p Coding and Modulation Parameters

11 802.11p Frame Structure

12 802.11p Receiver Structure

13 802.11p Receiver Structure Energy Detection Where is most probably the beginning of the next packet? Time Synchronization over the short training symbols Where is the beginning of the next packet? Calculation of the channel estimate using the long training symbols How did the channel influence the received packet?

14 802.11p Receiver Structure Decoding of the Signal packet to retrieve RATE ( = coding rate) and LENGTH ( = length of the DATA packet) Channel Estimation & Carrier Phase Offset Estimation OFDM demodulation (BPSK 1/2) deinterleaving decoding using the Viterbi algorithm depending on the RATE, the modulation parameters (type of modulation, coding rate, coded bits per subcarrier, normalization factor) are set calculation of the number of transmitted OFDM symbols in the DATA packet

15 802.11p Receiver Structure Decoding of the DATA packets Channel Estimation & Carrier Phase Offset Estimation OFDM demodulation deinterleaving decoding using the Viterbi algorithm descrambling CRC decoder

16 ExpressMIMO Platform

17 ExpressMIMO Platform 1

18 Required DSP Engines Preprocessor Frequency correction (NCO) I/Q imbalance correction (phase / amplitude) Digital Retiming for arbitrary sampling rates Real-time interrupt generation Front-End Processor Time Synchronization Channel / Coarse Frequency Estimation Data Detection FFT Channel Decoder Viterbi decoder Deinterleaver Descrambling

19 Generic IP Shell DMA transfers in parallel to IP processing Programming of the next command while processing the current one In the future UC usage to enable a distributed control on the platform Preparation of the commands before receiver execution command stored in the VCI RAM and copied into the CTRL registers before the it is executed only dynamically changing parameters modified by LEON3 during runtime

20 Mapping the p receiver on the ExpressMIMO Platform

21 Emulation vs. HW Receiver Code Libembb generic interface getter and setter functions for command words (bfgen generated) getter and setter functions for command words (bfgen generated) Functional Model (C++) DSP Engine Command registers DSP Engine

22 PART 1: p Receiver Emulation using Libembb

23 Emulation vs. HW Receiver Code Libembb generic interface getter and setter functions for command words (bfgen generated) getter and setter functions for command words (bfgen generated) Functional Model (C++) DSP Engine Command registers DSP Engine

24 Code Structure (Emulation) libembb Receiver Code expressmimo_emu dot11_main.cc dot11_phy_procedures.cc dot11_sts_lts_detection.cc dot11_signal_field.cc dot11_data_packets_bpsk.cc dot11_data_packets_qpsk.cc dot11_data_packets_16qam.cc dot11_data_packets_64qam.cc expressmimo_emu.cc

25 Mapping the p receiver on the ExpressMIMO Platform dot11_main.cc dot11_phy_procedures.cc dot11_sts_lts_detection.cc dot11_signal_field.cc dot11_data_packets_bpsk.cc dot11_data_packets_qpsk.cc dot11_data_packets_16qam.cc dot11_data_packets_64qam.cc

26 Time Synchronization Preprocessor generates an interrupt as soon as 640 new input samples are available Energy Detection in combination with an overlapping FFT based correlation between 256 incoming samples a 4 Byte and the Short Training Symbol (160 samples, zero-extended to 256 samples) The FFTs overlap by 176 samples ( repetition each 80 samples) Peak detection to find the starting point of the packet

27 Time Synchronization FEP operations: energy calculation (256 samples) 2x256-point FFT / IFFT component-wise product (256 samples) max-argmax operation (256 samples) Comparison to threshold value LEON3: global control flow uc: distributed contol flow (preferred) total <8 us at 100 MHz

28 Time Synchronization Receiver Code 1. emm_fep_fft(256, dot11_vars->fft_offset, DFT_ADDR, 0); 2. emm_fep_component_wise_product_conj2(256, DFT_ADDR, STS_ADDR, CWP_ADDR, FEPTYPE_in1_cpx32 FEPTYPE_in2_cpx32 FEPTYPE_out_cpx32); 3. emm_fep_fft(256, CWP_ADDR, IDFT_ADDR, 1); 4. emm_fep_energy_max_argmax (256, IDFT_ADDR, RESULT_ADDR, FEPTYPE_in_cpx32 FEPTYPE_out_cpx32); 5. emm_memcpy_fep2leon((uint32_t*)max_argmax, (RESULT_ADDR+2)*4, 4*4); 6. dot11_vars->sts_synch_val[0] = max_argmax[0] & 0xffff; 7. dot11_vars->sts_max_pos[0] = max_argmax[2] & 0xffff; 8. VALUE COMPARISON

29 Time Synchronization Receiver Code 1. emm_fep_fft(256, dot11_vars->fft_offset, DFT_ADDR, 0); 2. emm_fep_component_wise_product_conj2(256, DFT_ADDR, STS_ADDR, CWP_ADDR, FEPTYPE_in1_cpx32 FEPTYPE_in2_cpx32 FEPTYPE_out_cpx32); 3. emm_fep_fft(256, CWP_ADDR, IDFT_ADDR, 1); 4. emm_fep_energy_max_argmax (256, IDFT_ADDR, RESULT_ADDR, FEPTYPE_in_cpx32 FEPTYPE_out_cpx32); 5. emm_memcpy_fep2leon((uint32_t*)max_argmax, (RESULT_ADDR+2)*4, 4*4); 6. dot11_vars->sts_synch_val[0] = max_argmax[0] & 0xffff; 7. dot11_vars->sts_max_pos[0] = max_argmax[2] & 0xffff; 8. VALUE COMPARISON

30 Time Synchronization libembb (expressmimo_emu.cc) emm_fep_fft(256, dot11_vars->fft_offset, DFT_ADDR, 0); void emm_fep_fft (uint32_t size, uint32_t offset_src, uint32_t offset_dst, uint32_t inverse) { FEP_CONTEXT *ctx = &ctxf; FEP_FFT; fep_start(ctx); }

31 Time Synchronization libembb (expressmimo.h) emm_fep_fft(256, dot11_vars->fft_offset, DFT_ADDR, 0); #define FEP_FFT { \ } uint32_t src_addr_index, dst_addr_index, src_memquarter, dst_memquarter; \ src_addr_index = get_addr_index_fft(offset_src); \ dst_addr_index = get_addr_index_fft(offset_dst); \ src_memquarter = get_fep_mss_bank(offset_src); \ dst_memquarter = get_fep_mss_bank(offset_dst); \ fep_set_l (ctx, size); \ fep_set_i (ctx, inverse); \ fep_set_bx(ctx, src_addr_index); \ fep_set_bz(ctx, dst_addr_index); \ fep_set_qx(ctx, src_memquarter); \ fep_set_qz(ctx, dst_memquarter); \ fep_set_wx(ctx, 3); \ fep_set_wz(ctx, 3); \ fep_set_op(ctx, FEP_OP_FT); \

32 Mapping the p receiver on the ExpressMIMO Platform dot11_main.cc dot11_phy_procedures.cc dot11_sts_lts_detection.cc dot11_signal_field.cc dot11_data_packets_bpsk.cc dot11_data_packets_qpsk.cc dot11_data_packets_16qam.cc dot11_data_packets_64qam.cc

33 Calculation of the Channel Estimate Calculated once for the whole packet FEP operations 64-point FFT of the Long Training Symbol (can be prestored in the FEP MSS) 64-point FFT component-wise product (64 sample vector)

34 Mapping the p receiver on the ExpressMIMO Platform dot11_main.cc dot11_phy_procedures.cc dot11_sts_lts_detection.cc dot11_signal_field.cc dot11_data_packets_bpsk.cc dot11_data_packets_qpsk.cc dot11_data_packets_16qam.cc dot11_data_packets_64qam.cc

35 SIGNAL Field Contains RATE and LENGTH RATE: type of modulation, coding rate LENGTH: between 0 and 4095 Characteristics Single OFDM symbol BSPK modulated Convolutional encoder with rate = ½ and generator polynomials g0=133 and g1 = 171 Calculation or use LUTs number of bits per subcarrier number of coded bits / data bits per OFDM symbol number of transmitted symbols number of data bits number of padding bits

36 SIGNAL Field Sequential processing of the invoked DSP engines (no parallelism possible) FEP Operations 64-point FFT Multiplication with the Channel Estimate o component-wise multiplication Carrier phase offset estimation o dot product over the four pilots o correction of the amplitude not necessary as the real part of the result is directly taken as input of the deinterleaver

37 SIGNAL Field Deinterleaving 64 input samples, 48 output samples combination of permutation tables in the standard + removing of the nulled and pilot carriers Decoding Viterbi Decoder

38 Mapping the p receiver on the ExpressMIMO Platform dot11_main.cc dot11_phy_procedures.cc dot11_sts_lts_detection.cc dot11_signal_field.cc dot11_data_packets_bpsk.cc dot11_data_packets_qpsk.cc dot11_data_packets_16qam.cc dot11_data_packets_64qam.cc

39 DATA Field Contains the SERVICE field, the PDSU, TAIL and PAD bits Characteristics Encoded message split over several OFDM (DATA) symbols BSPK, QPSK, 16-QAM or 64-QAM modulated Convolutional encoder with rate = ½ and generator polynomials g0=133 and g1 = 171 Higher rates (2/3, 3/4) can be achieved by employing zero-insertion All bits are scrambled (length-127-frame-synchronous-scrambler)

40 DATA Field Symbol grouping of FEP operations to process on larger vectors (performance gain) Max. group size is 8 (corresponds to the number of OFDM symbols transferred after each Preprocessor interrupt) Important for standards operating on short data sets Reduction of the required time to program the FEP operations

41 DATA Field FEP Operations 64-point FFT Multiplication with the Channel Estimate o component-wise multiplication

42 DATA Field FEP Operations Carrier phase offset estimation o dot product over the four pilots o correction of the amplitude not necessary for BPSK and QPSK as the result directly taken as input of the deinterleaver

43 Data Detection using the FEP BPSK/QPSK: 16-QAM: 64-QAM:

44 DATA Field Deinterleaving (per DATA symbol) combination of permutation tables in the standard + removing of the nulled and pilot carriers Decoding Viterbi Decoder Rate INTL IN (Byte) INTL OUT (Byte) BPSK 1/ / QPSK 1/ / QAM 1/ / QAM 2/ /

45 LAB: Emulation of the p receiver ~/home/winterschool/emulation In dot11_phy_definitions.h: Print-outs of different intermediate results Variation of the number of DATA symbols to be grouped Different testsignals Usrp snaphot Testsignals generated according to the encoding procedure given by the standard precification make clean <testsignal> run bpsk_1_2 / bpsk_3_4 / qpsk_1_2 / qpsk_3_4 / qam16_1_2 / qam16_3_4 / qam64_2_3 / qam64_3_4 / usrp

46 PART 2: Running the p Receiver on ExpressMIMO

47 Emulation vs. HW Receiver Code Libembb generic interface getter and setter functions for command words (bfgen generated) getter and setter functions for command words (bfgen generated) Functional Model (C++) DSP Engine Command registers DSP Engine

48 Emulation vs. HW Receiver Code Libembb generic interface getter and setter functions for command words (bfgen generated) Functional Model (C++) DSP Engine getter and setter functions for command words (bfgen generated) Command registers DSP Engine not executable in realtime for standards with short data sets (huge overhead) Command preparation before launching the receiver

49 Code Structure (HW) Libembb Receiver Code expressmimo_hw dot11_main.c dot11_phy_procedures.c dot11_sts_lts_detection.c dot11_signal_field.c dot11_data_packets_bpsk.c dot11_data_packets_qpsk.c dot11_data_packets_16qam.c dot11_data_packets_64qam.c expressmimo_hw.c

50 Realtime Code Enhancements Parallel processing of the invoked DSP engines & DMA transfers Round robin scheduler Command preparation before starting the receiver to improve performance Only a few parameters change dynamically during runtime Preparation of the next command while the current one is still running

51 ExpressMIMO Platform

52 LAB: Running the p receiver on ExpressMIMO ~/home/winterschool/hw In dot11_phy_definitions.h: Print-outs of different intermediate results Variation of the number of DATA symbols to be grouped ~/home/mutekh./simstart.sh (to generate the plots like for Emulation)./simstart.sh text (to obtain results in text format)

Multi-Standard Processing using DAB and p on Software Defined Radio Platforms

Multi-Standard Processing using DAB and p on Software Defined Radio Platforms Multi-Standard Processing using DAB and 802.11p on Software Defined Radio Platforms Carina Schmidt-Knorreck, Matthias Ihmig, Raymond Knopp, Andreas Herkersdorf Mobile Communications Department, EURECOM

More information

Nutaq OFDM Reference

Nutaq OFDM Reference Nutaq OFDM Reference Design FPGA-based, SISO/MIMO OFDM PHY Transceiver PRODUCT SHEET QUEBEC I MONTREAL I NEW YORK I nutaq.com Nutaq OFDM Reference Design SISO/2x2 MIMO Implementation Simulation/Implementation

More information

Performance Analysis of n Wireless LAN Physical Layer

Performance Analysis of n Wireless LAN Physical Layer 120 1 Performance Analysis of 802.11n Wireless LAN Physical Layer Amr M. Otefa, Namat M. ElBoghdadly, and Essam A. Sourour Abstract In the last few years, we have seen an explosive growth of wireless LAN

More information

Chapter 0 Outline. NCCU Wireless Comm. Lab

Chapter 0 Outline. NCCU Wireless Comm. Lab Chapter 0 Outline Chapter 1 1 Introduction to Orthogonal Frequency Division Multiplexing (OFDM) Technique 1.1 The History of OFDM 1.2 OFDM and Multicarrier Transmission 1.3 The Applications of OFDM 2 Chapter

More information

SOFTWARE IMPLEMENTATION OF THE

SOFTWARE IMPLEMENTATION OF THE SOFTWARE IMPLEMENTATION OF THE IEEE 802.11A/P PHYSICAL LAYER SDR`12 WInnComm Europe 27 29 June, 2012 Brussels, Belgium T. Cupaiuolo, D. Lo Iacono, M. Siti and M. Odoni Advanced System Technologies STMicroelectronics,

More information

Wireless Networks: An Introduction

Wireless Networks: An Introduction Wireless Networks: An Introduction Master Universitario en Ingeniería de Telecomunicación I. Santamaría Universidad de Cantabria Contents Introduction Cellular Networks WLAN WPAN Conclusions Wireless Networks:

More information

An FPGA 1Gbps Wireless Baseband MIMO Transceiver

An FPGA 1Gbps Wireless Baseband MIMO Transceiver An FPGA 1Gbps Wireless Baseband MIMO Transceiver Center the Authors Names Here [leave blank for review] Center the Affiliations Here [leave blank for review] Center the City, State, and Country Here (address

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

Implementation of OFDM-based Superposition Coding on USRP using GNU Radio

Implementation of OFDM-based Superposition Coding on USRP using GNU Radio Implementation of OFDM-based Superposition Coding on USRP using GNU Radio Zhenhua Gong, Chia-han Lee, Sundaram Vanka, Radha Krishna Ganti, Sunil Srinivasa, David Tisza, Peter Vizi, and Martin Haenggi Department

More information

WLAN a Spec. (Physical Layer) 2005/04/ /4/28. WLAN Group 1

WLAN a Spec. (Physical Layer) 2005/04/ /4/28. WLAN Group 1 WLAN 802.11a Spec. (Physical Layer) 2005/4/28 2005/04/28 1 802.11a PHY SPEC. for the 5GHz band Introduction The radio frequency LAN system is initially aimed for the 5.15-5.25, 5.25-5.35 GHz, & 5.725-5.825

More information

An FPGA Case Study: Narrowband COFDM Video Transceiver for Drones, UAV, and UGV. Produced by EE Times

An FPGA Case Study: Narrowband COFDM Video Transceiver for Drones, UAV, and UGV. Produced by EE Times An FPGA Case Study: Narrowband COFDM Video Transceiver for Drones, UAV, and UGV #eelive Produced by EE Times An FPGA Case Study System Definition Implementation Verification and Validation CNR1 Narrowband

More information

TSTE17 System Design, CDIO. General project hints. Behavioral Model. General project hints, cont. Lecture 5. Required documents Modulation, cont.

TSTE17 System Design, CDIO. General project hints. Behavioral Model. General project hints, cont. Lecture 5. Required documents Modulation, cont. TSTE17 System Design, CDIO Lecture 5 1 General project hints 2 Project hints and deadline suggestions Required documents Modulation, cont. Requirement specification Channel coding Design specification

More information

2002 IEEE International Solid-State Circuits Conference 2002 IEEE

2002 IEEE International Solid-State Circuits Conference 2002 IEEE Outline 802.11a Overview Medium Access Control Design Baseband Transmitter Design Baseband Receiver Design Chip Details What is 802.11a? IEEE standard approved in September, 1999 12 20MHz channels at 5.15-5.35

More information

Practical issue: Group definition. TSTE17 System Design, CDIO. Quadrature Amplitude Modulation (QAM) Components of a digital communication system

Practical issue: Group definition. TSTE17 System Design, CDIO. Quadrature Amplitude Modulation (QAM) Components of a digital communication system 1 2 TSTE17 System Design, CDIO Introduction telecommunication OFDM principle How to combat ISI How to reduce out of band signaling Practical issue: Group definition Project group sign up list will be put

More information

ON FUTURE AERONAUTICAL COMMUNICATIONS: IMPLEMENTATION OF A REAL-TIME AEROMACS WAVEFORM FOR SOFTWARE-DEFINED RADIOS (SDR)

ON FUTURE AERONAUTICAL COMMUNICATIONS: IMPLEMENTATION OF A REAL-TIME AEROMACS WAVEFORM FOR SOFTWARE-DEFINED RADIOS (SDR) Esame di Laurea 3 Dicembre 2012 ON FUTURE AERONAUTICAL COMMUNICATIONS: IMPLEMENTATION OF A REAL-TIME AEROMACS WAVEFORM FOR SOFTWARE-DEFINED RADIOS (SDR) Daniele Bolognesi Massimiliano Francone Relatori

More information

Mohammad Hossein Manshaei 1393

Mohammad Hossein Manshaei 1393 Mohammad Hossein Manshaei manshaei@gmail.com 1393 1 PLCP format, Data Rates, OFDM, Modulations, 2 IEEE 802.11a: Transmit and Receive Procedure 802.11a Modulations BPSK Performance Analysis Convolutional

More information

WiMAX Basestation: Software Reuse Using a Resource Pool. Arnon Friedmann SW Product Manager

WiMAX Basestation: Software Reuse Using a Resource Pool. Arnon Friedmann SW Product Manager WiMAX Basestation: Software Reuse Using a Resource Pool Cory Modlin Wireless Systems Architect cmodlin@ti.com L. N. Reddy Wireless Software Manager lnreddy@tataelxsi.co.in Arnon Friedmann SW Product Manager

More information

MIMO RFIC Test Architectures

MIMO RFIC Test Architectures MIMO RFIC Test Architectures Christopher D. Ziomek and Matthew T. Hunter ZTEC Instruments, Inc. Abstract This paper discusses the practical constraints of testing Radio Frequency Integrated Circuit (RFIC)

More information

OPEN SOURCE TRANSPARENCY FOR OFDM EXPERIMENTATION

OPEN SOURCE TRANSPARENCY FOR OFDM EXPERIMENTATION OPEN SOURCE TRANSPARENCY FOR OFDM EXPERIMENTATION Thomas W. Rondeau (CTVR, Trinity College Dublin, Dublin, Ireland, trondeau@vt.edu), Matt Ettus (Ettus Research, LLC., matt@ettus.com), Robert W. McGwier

More information

Mobile & Wireless Networking. Lecture 2: Wireless Transmission (2/2)

Mobile & Wireless Networking. Lecture 2: Wireless Transmission (2/2) 192620010 Mobile & Wireless Networking Lecture 2: Wireless Transmission (2/2) [Schiller, Section 2.6 & 2.7] [Reader Part 1: OFDM: An architecture for the fourth generation] Geert Heijenk Outline of Lecture

More information

C2 and Payload in One Link

C2 and Payload in One Link C2 and Payload in One Link Chances and Challenges of OFDM DGLR Symposium Datenlink-Technologien für bemannte und unbemannte Missionen 21. März 2013 Dr. Christoph Heller Christian Blümm Outline Problem

More information

Wireless Medium Access Control and CDMA-based Communication Lesson 16 Orthogonal Frequency Division Medium Access (OFDM)

Wireless Medium Access Control and CDMA-based Communication Lesson 16 Orthogonal Frequency Division Medium Access (OFDM) Wireless Medium Access Control and CDMA-based Communication Lesson 16 Orthogonal Frequency Division Medium Access (OFDM) 1 4G File transfer at 10 Mbps High resolution 1024 1920 pixel hi-vision picture

More information

UNIFIED DIGITAL AUDIO AND DIGITAL VIDEO BROADCASTING SYSTEM USING ORTHOGONAL FREQUENCY DIVISION MULTIPLEXING (OFDM) SYSTEM

UNIFIED DIGITAL AUDIO AND DIGITAL VIDEO BROADCASTING SYSTEM USING ORTHOGONAL FREQUENCY DIVISION MULTIPLEXING (OFDM) SYSTEM UNIFIED DIGITAL AUDIO AND DIGITAL VIDEO BROADCASTING SYSTEM USING ORTHOGONAL FREQUENCY DIVISION MULTIPLEXING (OFDM) SYSTEM 1 Drakshayini M N, 2 Dr. Arun Vikas Singh 1 drakshayini@tjohngroup.com, 2 arunsingh@tjohngroup.com

More information

Anju 1, Amit Ahlawat 2

Anju 1, Amit Ahlawat 2 Implementation of OFDM based Transreciever for IEEE 802.11A on FPGA Anju 1, Amit Ahlawat 2 1 Hindu College of Engineering, Sonepat 2 Shri Baba Mastnath Engineering College Rohtak Abstract This paper focus

More information

OFDM AS AN ACCESS TECHNIQUE FOR NEXT GENERATION NETWORK

OFDM AS AN ACCESS TECHNIQUE FOR NEXT GENERATION NETWORK OFDM AS AN ACCESS TECHNIQUE FOR NEXT GENERATION NETWORK Akshita Abrol Department of Electronics & Communication, GCET, Jammu, J&K, India ABSTRACT With the rapid growth of digital wireless communication

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

SOFTWARE IMPLEMENTATION OF a BLOCKS ON SANDBLASTER DSP Vaidyanathan Ramadurai, Sanjay Jinturkar, Sitij Agarwal, Mayan Moudgill, John Glossner

SOFTWARE IMPLEMENTATION OF a BLOCKS ON SANDBLASTER DSP Vaidyanathan Ramadurai, Sanjay Jinturkar, Sitij Agarwal, Mayan Moudgill, John Glossner SOFTWARE IMPLEMENTATION OF 802.11a BLOCKS ON SANDBLASTER DSP Vaidyanathan Ramadurai, Sanjay Jinturkar, Sitij Agarwal, Mayan Moudgill, John Glossner Sandbridge Technologies, 1 North Lexington Avenue, White

More information

Project: IEEE P Working Group for Wireless Personal Area Networks(WPANs)

Project: IEEE P Working Group for Wireless Personal Area Networks(WPANs) Slide 1 Project: IEEE P802.15 Working Group for Wireless Personal Area Networks(WPANs) Title: OFDM PHY Merge Proposal for TG4m Date Submitted: September 13, 2012 Source:, Cheol-ho Shin, Mi-Kyung Oh and

More information

PROPOSAL FOR PHY SIGNALING PRESENTED BY AVI KLIGER, BROADCOM

PROPOSAL FOR PHY SIGNALING PRESENTED BY AVI KLIGER, BROADCOM PROPOSAL FOR PHY SIGNALING PRESENTED BY AVI KLIGER, BROADCOM IEEE 802.3bn EPoC, Phoenix, Jan 2013 1 THREE TYPES OF PHY SIGNALING: PHY Link Channel (PLC) Contains: Information required for PHY link up,

More information

ENHANCING BER PERFORMANCE FOR OFDM

ENHANCING BER PERFORMANCE FOR OFDM RESEARCH ARTICLE OPEN ACCESS ENHANCING BER PERFORMANCE FOR OFDM Amol G. Bakane, Prof. Shraddha Mohod Electronics Engineering (Communication), TGPCET Nagpur Electronics & Telecommunication Engineering,TGPCET

More information

An OFDM Transmitter and Receiver using NI USRP with LabVIEW

An OFDM Transmitter and Receiver using NI USRP with LabVIEW An OFDM Transmitter and Receiver using NI USRP with LabVIEW Saba Firdose, Shilpa B, Sushma S Department of Electronics & Communication Engineering GSSS Institute of Engineering & Technology For Women Abstract-

More information

Bit Error Rate Performance Evaluation of Various Modulation Techniques with Forward Error Correction Coding of WiMAX

Bit Error Rate Performance Evaluation of Various Modulation Techniques with Forward Error Correction Coding of WiMAX Bit Error Rate Performance Evaluation of Various Modulation Techniques with Forward Error Correction Coding of WiMAX Amr Shehab Amin 37-20200 Abdelrahman Taha 31-2796 Yahia Mobasher 28-11691 Mohamed Yasser

More information

Performance Analysis of WiMAX Physical Layer Model using Various Techniques

Performance Analysis of WiMAX Physical Layer Model using Various Techniques Volume-4, Issue-4, August-2014, ISSN No.: 2250-0758 International Journal of Engineering and Management Research Available at: www.ijemr.net Page Number: 316-320 Performance Analysis of WiMAX Physical

More information

Adoption of this document as basis for broadband wireless access PHY

Adoption of this document as basis for broadband wireless access PHY Project Title Date Submitted IEEE 802.16 Broadband Wireless Access Working Group Proposal on modulation methods for PHY of FWA 1999-10-29 Source Jay Bao and Partha De Mitsubishi Electric ITA 571 Central

More information

DESIGN, IMPLEMENTATION AND OPTIMISATION OF 4X4 MIMO-OFDM TRANSMITTER FOR

DESIGN, IMPLEMENTATION AND OPTIMISATION OF 4X4 MIMO-OFDM TRANSMITTER FOR DESIGN, IMPLEMENTATION AND OPTIMISATION OF 4X4 MIMO-OFDM TRANSMITTER FOR COMMUNICATION SYSTEMS Abstract M. Chethan Kumar, *Sanket Dessai Department of Computer Engineering, M.S. Ramaiah School of Advanced

More information

Agenda. Overview of LTE UE Attach Procedure OAI-UE Threading Structure & Timing Walk through the OAI-UE Codes

Agenda. Overview of LTE UE Attach Procedure OAI-UE Threading Structure & Timing Walk through the OAI-UE Codes OAI UE overview Wilson W. K. Thong (ASTRI), Fabrice Nabet, Haithem Bilel (TCL), Florian Kaltenberger, Raymond Knopp (Eurecom) OAI workshop 2017 BUPT, Beijing, April 27 th 2017 Agenda Overview of LTE UE

More information

Volume 2, Issue 9, September 2014 International Journal of Advance Research in Computer Science and Management Studies

Volume 2, Issue 9, September 2014 International Journal of Advance Research in Computer Science and Management Studies Volume 2, Issue 9, September 2014 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online at: www.ijarcsms.com

More information

DIFFERENT ALGORITHMS FOR VLSI IMPLEMENTATION OF OFDM

DIFFERENT ALGORITHMS FOR VLSI IMPLEMENTATION OF OFDM DIFFERENT ALGORITHMS FOR VLSI IMPLEMENTATION OF OFDM AARTI S SHINDE 1, PROF. A.K.PATHRIKAR 2 1 (PG Student Departmentt of E&TC, Savitribai Phule Women s Engineering College Aurangabad) 2 (Assistant Professor,

More information

A Many-Core Software Defined Solution for the Development and Deployment of Wireless Systems

A Many-Core Software Defined Solution for the Development and Deployment of Wireless Systems Title Slide A Many-Core Software Defined Solution for the Development and Deployment of Wireless Systems SDR'11-WInnComm Wednesday, November 30, 2011 Session 4A SDR Systems John Irza Solutions Architect

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

Experimenting with Orthogonal Frequency-Division Multiplexing OFDM Modulation

Experimenting with Orthogonal Frequency-Division Multiplexing OFDM Modulation FUTEBOL Federated Union of Telecommunications Research Facilities for an EU-Brazil Open Laboratory Experimenting with Orthogonal Frequency-Division Multiplexing OFDM Modulation The content of these slides

More information

Presentation Outline. Advisors: Dr. In Soo Ahn Dr. Thomas L. Stewart. Team Members: Luke Vercimak Karl Weyeneth

Presentation Outline. Advisors: Dr. In Soo Ahn Dr. Thomas L. Stewart. Team Members: Luke Vercimak Karl Weyeneth Bradley University Department of Electrical and Computer Engineering Senior Capstone Project Proposal December 6 th, 2005 Team Members: Luke Vercimak Karl Weyeneth Advisors: Dr. In Soo Ahn Dr. Thomas L.

More information

A Polling Based Approach For Delay Analysis of WiMAX/IEEE Systems

A Polling Based Approach For Delay Analysis of WiMAX/IEEE Systems A Polling Based Approach For Delay Analysis of WiMAX/IEEE 802.16 Systems Archana B T 1, Bindu V 2 1 M Tech Signal Processing, Department of Electronics and Communication, Sree Chitra Thirunal College of

More information

UNDERSTANDING LTE WITH MATLAB

UNDERSTANDING LTE WITH MATLAB UNDERSTANDING LTE WITH MATLAB FROM MATHEMATICAL MODELING TO SIMULATION AND PROTOTYPING Dr Houman Zarrinkoub MathWorks, Massachusetts, USA WILEY Contents Preface List of Abbreviations 1 Introduction 1.1

More information

ALOE Framework and Tools

ALOE Framework and Tools Department of Signal Theory and Communications UNIVERSITAT POLITÈCNICA DE CATALUNYA ALOE Framework and Tools Vuk Marojevic Ismael Gomez Antoni Gelonch ALOE Webinar. May 24th 212. http://flexnets.upc.edu/

More information

VIAVI VST. Data Sheet. 6 GHz RF Vector Signal Transceiver (VST)

VIAVI VST. Data Sheet. 6 GHz RF Vector Signal Transceiver (VST) Data Sheet VIAVI 6 GHz RF Vector Signal Transceiver () VIAVI Solutions The Vector Signal Transceiver () is an essential building block in RF communications test solutions supplied by VIAVI Solutions. Overview

More information

EC 551 Telecommunication System Engineering. Mohamed Khedr

EC 551 Telecommunication System Engineering. Mohamed Khedr EC 551 Telecommunication System Engineering Mohamed Khedr http://webmail.aast.edu/~khedr 1 Mohamed Khedr., 2008 Syllabus Tentatively Week 1 Week 2 Week 3 Week 4 Week 5 Week 6 Week 7 Week 8 Week 9 Week

More information

IN recent years, the field of wireless technology has seen

IN recent years, the field of wireless technology has seen IEEE TRANSACTIONS ON EMERGING TOPICS IN COMPUTING, MARCH 2017 1 Hardware-Software Codesign of Wireless Transceivers on Zynq Heterogeneous Systems Benjamin Drozdenko, Member, IEEE, Matthew Zimmermann, Tuan

More information

SIGNAL PROCESSING WIRELESS COMMUNICATION RF TEST AND MEASUREMENT AUTOMOTIVE DEFENSE AND AEROSPACE

SIGNAL PROCESSING WIRELESS COMMUNICATION RF TEST AND MEASUREMENT AUTOMOTIVE DEFENSE AND AEROSPACE SIGNAL PROCESSING WIRELESS COMMUNICATION RF TEST AND MEASUREMENT AUTOMOTIVE DEFENSE AND AEROSPACE Your One-Stop Provider for In-Vehicle Infotainment (IVI Test), Set-Top-Box, Digital TV Mobile TV test solution.

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

A Robust and Low-Complexity Timing Synchronization Algorithm for ADSRC System Huynh Trong Anh 1, Jinsang Kim 1, Won-Kyung Cho 1, Jongchan Choi 2, Kitaek Lim 2, and Jaemin Kwak 2 1 CSA & VLSI Lab, Department

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

Implementation of High-throughput Access Points for IEEE a/g Wireless Infrastructure LANs

Implementation of High-throughput Access Points for IEEE a/g Wireless Infrastructure LANs Implementation of High-throughput Access Points for IEEE 802.11a/g Wireless Infrastructure LANs Hussein Alnuweiri Ph.D. and Diego Perea-Vega M.A.Sc. Abstract In this paper we discuss the implementation

More information

Low-cost approach for a software-defined radio based ground station receiver for CCSDS standard compliant S-band satellite communications

Low-cost approach for a software-defined radio based ground station receiver for CCSDS standard compliant S-band satellite communications IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS Low-cost approach for a software-defined radio based ground station receiver for CCSDS standard compliant S-band satellite communications

More information

Design of LTE radio access network testbed

Design of LTE radio access network testbed Design of LTE radio access network testbed Rohit Budhiraja Advisor Bhaskar Ramamurthi Department of Electrical Engineering IIT Madras Rohit Budhiraja (IIT Madras) LTE RAN Testbed 1 / 42 Brief profile Practical

More information

Chapter 3 Introduction to OFDM-Based Systems

Chapter 3 Introduction to OFDM-Based Systems Chapter 3 Introduction to OFDM-Based Systems 3.1 Eureka 147 DAB System he Eureka 147 DAB [5] system has the following features: it has sound quality comparable to that of CD, it can provide maximal coverage

More information

Wireless Communication Systems: Implementation perspective

Wireless Communication Systems: Implementation perspective Wireless Communication Systems: Implementation perspective Course aims To provide an introduction to wireless communications models with an emphasis on real-life systems To investigate a major wireless

More information

With a lot of material from Rich Nicholls, CTL/RCL and Kurt Sundstrom, of unknown whereabouts

With a lot of material from Rich Nicholls, CTL/RCL and Kurt Sundstrom, of unknown whereabouts Signal Processing for OFDM Communication Systems Eric Jacobsen Minister of Algorithms, Intel Labs Communication Technology Laboratory/ Radio Communications Laboratory July 29, 2004 With a lot of material

More information

Implementing WiMAX OFDM Timing and Frequency Offset Estimation in Lattice FPGAs

Implementing WiMAX OFDM Timing and Frequency Offset Estimation in Lattice FPGAs Implementing WiMAX OFDM Timing and Frequency Offset Estimation in Lattice FPGAs November 2005 Lattice Semiconductor 5555 Northeast Moore Ct. Hillsboro, Oregon 97124 USA Telephone: (503) 268-8000 www.latticesemi.com

More information

UNIVERSITY OF MICHIGAN DEPARTMENT OF ELECTRICAL ENGINEERING : SYSTEMS EECS 555 DIGITAL COMMUNICATION THEORY

UNIVERSITY OF MICHIGAN DEPARTMENT OF ELECTRICAL ENGINEERING : SYSTEMS EECS 555 DIGITAL COMMUNICATION THEORY UNIVERSITY OF MICHIGAN DEPARTMENT OF ELECTRICAL ENGINEERING : SYSTEMS EECS 555 DIGITAL COMMUNICATION THEORY Study Of IEEE P802.15.3a physical layer proposals for UWB: DS-UWB proposal and Multiband OFDM

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

Commsonic. Universal QAM/PSK Modulator CMS0004. Contact information. Continuous or burst-mode operation.

Commsonic. Universal QAM/PSK Modulator CMS0004. Contact information. Continuous or burst-mode operation. Universal QAM/PSK Modulator CMS0004 Continuous or burst-mode operation. Symbol mapping for QAM orders from 2 (BPSK) to 256 (256-QAM) including support for cross, circular (MPSK) and offset (staggered)

More information

FROM SIMULATION TO DEMONSTRATION A SDR-BASED MULTI-MODE TESTBED

FROM SIMULATION TO DEMONSTRATION A SDR-BASED MULTI-MODE TESTBED FROM SIMULATION TO DEMONSTRATION A SDR-BASED MULTI-MODE TESTBED Lin HUANG; Kan ZHENG; Guillaume DECARREAU (Orange Lab, Beijing, China; {lin.huang, kan.zheng, guillaume.decarreau}@orange-ftgroup.com) Hanwen

More information

June 09, 2014 Document Version: 1.1.0

June 09, 2014 Document Version: 1.1.0 DVB-T2 Analysis Toolkit Data Sheet An ideal solution for SFN network planning, optimization, maintenance and Broadcast Equipment Testing June 09, 2014 Document Version: 1.1.0 Contents 1. Overview... 3

More information

Chapter 8 OFDM Applications. CCU Wireless Comm. Lab

Chapter 8 OFDM Applications. CCU Wireless Comm. Lab Chapter 8 OFDM Applications Contents 8 OFDM Applications 8.1 DAB 8.2 HDTV 8.3 Wireless LAN Networks 8.3.1 HIPERLAN/2 8.3.2 IEEE 802.11a 8.3.3 IEEE 802.11g 8.4 IEEE 802.16 Broadband Wireless Access System

More information

CHAPTER 3 MIMO-OFDM DETECTION

CHAPTER 3 MIMO-OFDM DETECTION 63 CHAPTER 3 MIMO-OFDM DETECTION 3.1 INTRODUCTION This chapter discusses various MIMO detection methods and their performance with CE errors. Based on the fact that the IEEE 80.11n channel models have

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

Performance Analysis of Ofdm Transceiver using Gmsk Modulation Technique

Performance Analysis of Ofdm Transceiver using Gmsk Modulation Technique Performance Analysis of Ofdm Transceiver using Gmsk Modulation Technique Gunjan Negi Student, ECE Department GRD Institute of Management and Technology Dehradun, India negigunjan10@gmail.com Anuj Saxena

More information

Page 1. Overview : Wireless Networks Lecture 9: OFDM, WiMAX, LTE

Page 1. Overview : Wireless Networks Lecture 9: OFDM, WiMAX, LTE Overview 18-759: Wireless Networks Lecture 9: OFDM, WiMAX, LTE Dina Papagiannaki & Peter Steenkiste Departments of Computer Science and Electrical and Computer Engineering Spring Semester 2009 http://www.cs.cmu.edu/~prs/wireless09/

More information

Partial Reconfigurable Implementation of IEEE802.11g OFDM

Partial Reconfigurable Implementation of IEEE802.11g OFDM Indian Journal of Science and Technology, Vol 7(4S), 63 70, April 2014 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 Partial Reconfigurable Implementation of IEEE802.11g OFDM S. Sivanantham 1*, R.

More information

IEEE P Wireless Personal Area Networks

IEEE P Wireless Personal Area Networks IEEE P802.15 Wireless Personal Area Networks Project Title IEEE P802.15 Working Group for Wireless Personal Area Networks (WPANs) TVWS-NB-OFDM Merged Proposal to TG4m Date Submitted Sept. 18, 2009 Source

More information

IMPLEMENTATION OF SOFTWARE-BASED 2X2 MIMO LTE BASE STATION SYSTEM USING GPU

IMPLEMENTATION OF SOFTWARE-BASED 2X2 MIMO LTE BASE STATION SYSTEM USING GPU IMPLEMENTATION OF SOFTWARE-BASED 2X2 MIMO LTE BASE STATION SYSTEM USING GPU Seunghak Lee (HY-SDR Research Center, Hanyang Univ., Seoul, South Korea; invincible@dsplab.hanyang.ac.kr); Chiyoung Ahn (HY-SDR

More information

BER of OFDM system using concatenated forward error correcting codes (FEC) over Nakagami m fading channel

BER of OFDM system using concatenated forward error correcting codes (FEC) over Nakagami m fading channel BER of OFDM system using concatenated forward error correcting codes (FEC) over Nakagami m fading channel Mr. Firoz Ahmed Mansuri 1, Prof. Saurabh Gaur 2 1 Student ME(DC), Electronics & Communication,

More information

5 th Generation Non-Orthogonal Waveforms for Asynchronous Signaling. Final Review. Brussels, Work Package 5

5 th Generation Non-Orthogonal Waveforms for Asynchronous Signaling. Final Review. Brussels, Work Package 5 5 th Generation Non-Orthogonal Waveforms for Asynchronous Signaling Final Review Brussels, 24.06.2015 Work Package 5 Outline Work Package Overview Motivation Demonstrators FBMC UFMC GFDM System Simulator

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

Basic idea: divide spectrum into several 528 MHz bands.

Basic idea: divide spectrum into several 528 MHz bands. IEEE 802.15.3a Wireless Information Transmission System Lab. Institute of Communications Engineering g National Sun Yat-sen University Overview of Multi-band OFDM Basic idea: divide spectrum into several

More information

ATSC 3.0 Physical Layer Overview

ATSC 3.0 Physical Layer Overview ATSC 3.0 Physical Layer Overview Agenda Terminology Real world concerns Technology to combat those concerns Summary Basic Terminology What is OFDM? What is FEC? What is Shannon s Theorem? What does BER

More information

GRT-duplex: A Novel SDR Platform for Full-Duplex WiFi

GRT-duplex: A Novel SDR Platform for Full-Duplex WiFi Mobile Netw Appl (2016) 21:983 993 DOI 10.1007/s11036-016-0710-z GRT-duplex: A Novel SDR Platform for Full-Duplex WiFi Haoyang Wu 1 Tao Wang 1,2 Jiahua Chen 1 Sanjun Liu 3 Shuyi Tian 3 Songwu Lu 1,4 Meng

More information

Lecture 3: Wireless Physical Layer: Modulation Techniques. Mythili Vutukuru CS 653 Spring 2014 Jan 13, Monday

Lecture 3: Wireless Physical Layer: Modulation Techniques. Mythili Vutukuru CS 653 Spring 2014 Jan 13, Monday Lecture 3: Wireless Physical Layer: Modulation Techniques Mythili Vutukuru CS 653 Spring 2014 Jan 13, Monday Modulation We saw a simple example of amplitude modulation in the last lecture Modulation how

More information

Advanced coexistence technologies for radio optimisation in licensed and unlicensed spectrum (ACROPOLIS) Document Number D5.2

Advanced coexistence technologies for radio optimisation in licensed and unlicensed spectrum (ACROPOLIS) Document Number D5.2 Advanced coexistence technologies for radio optimisation in licensed and unlicensed spectrum (ACROPOLIS) Document Number D5.2 Report on the Analysis of OpenAirInterface and its Distribution in the Consortium

More information

Transmitting Multiple HD Video Streams over UWB Links

Transmitting Multiple HD Video Streams over UWB Links MITSUBISHI ELECTRIC RESEARCH LABORATORIES http://www.merl.com Transmitting Multiple HD Video Streams over UWB Links C. Duan, G. Pekhteryev, J. Fang, Y-P Nakache, J. Zhang, K. Tajima, Y. Nishioka, H. Hirai

More information

Implementation of OFDM Modulated Digital Communication Using Software Defined Radio Unit For Radar Applications

Implementation of OFDM Modulated Digital Communication Using Software Defined Radio Unit For Radar Applications Volume 118 No. 18 2018, 4009-4018 ISSN: 1311-8080 (printed version); ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu Implementation of OFDM Modulated Digital Communication Using Software

More information

Receiver Designs for the Radio Channel

Receiver Designs for the Radio Channel Receiver Designs for the Radio Channel COS 463: Wireless Networks Lecture 15 Kyle Jamieson [Parts adapted from C. Sodini, W. Ozan, J. Tan] Today 1. Delay Spread and Frequency-Selective Fading 2. Time-Domain

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

Technical Aspects of LTE Part I: OFDM

Technical Aspects of LTE Part I: OFDM Technical Aspects of LTE Part I: OFDM By Mohammad Movahhedian, Ph.D., MIET, MIEEE m.movahhedian@mci.ir ITU regional workshop on Long-Term Evolution 9-11 Dec. 2013 Outline Motivation for LTE LTE Network

More information

WHITEPAPER MULTICORE SOFTWARE DESIGN FOR AN LTE BASE STATION

WHITEPAPER MULTICORE SOFTWARE DESIGN FOR AN LTE BASE STATION WHITEPAPER MULTICORE SOFTWARE DESIGN FOR AN LTE BASE STATION Executive summary This white paper details the results of running the parallelization features of SLX to quickly explore the HHI/ Frauenhofer

More information

Performance analysis of OFDM with QPSK using AWGN and Rayleigh Fading Channel

Performance analysis of OFDM with QPSK using AWGN and Rayleigh Fading Channel Performance analysis of OFDM with QPSK using AWGN and Rayleigh Fading Channel 1 V.R.Prakash* (A.P) Department of ECE Hindustan university Chennai 2 P.Kumaraguru**(A.P) Department of ECE Hindustan university

More information

VST 6 GHz RF Vector Signal Transceiver (VST)

VST 6 GHz RF Vector Signal Transceiver (VST) VST 6 GHz RF Vector Signal Transceiver (VST) 2016 Datasheet The most important thing we build is trust Key features Vector signal analyser and generator in a single 3U x 3 slot wide PXIe module 65 MHz

More information

carriers are carrying synchronization and control signals to the receivers, but most of carriers conveys signal-data to the receiver.

carriers are carrying synchronization and control signals to the receivers, but most of carriers conveys signal-data to the receiver. Hierarchical encoding an interesting specialty within DVB-T and DVB-H. INTRODUCTION Highly promoted by the German expert group in the DVB-T group, hierarchical encoding represents a mode, which is compromise

More information

Field Experiments of 2.5 Gbit/s High-Speed Packet Transmission Using MIMO OFDM Broadband Packet Radio Access

Field Experiments of 2.5 Gbit/s High-Speed Packet Transmission Using MIMO OFDM Broadband Packet Radio Access NTT DoCoMo Technical Journal Vol. 8 No.1 Field Experiments of 2.5 Gbit/s High-Speed Packet Transmission Using MIMO OFDM Broadband Packet Radio Access Kenichi Higuchi and Hidekazu Taoka A maximum throughput

More information

Performance of OFDM System under Different Fading Channels and Coding

Performance of OFDM System under Different Fading Channels and Coding Bulletin of Electrical Engineering and Informatics ISSN: 2302-9285 Vol. 6, No. 1, March 2017, pp. 54~61, DOI: 10.11591/eei.v6i1.591 54 Performance of OFDM System under Different Fading s and Coding Pratima

More information

The Optimal Employment of CSI in COFDM-Based Receivers

The Optimal Employment of CSI in COFDM-Based Receivers The Optimal Employment of CSI in COFDM-Based Receivers Akram J. Awad, Timothy O Farrell School of Electronic & Electrical Engineering, University of Leeds, UK eenajma@leeds.ac.uk Abstract: This paper investigates

More information

Digital Video Broadcast Library (DVB)

Digital Video Broadcast Library (DVB) Digital Video Broadcast Library (DVB) Conforming to European Telecommunications Standard ETS 300 744 (March 1997) DVB SystemView by ELANIX Copyright 1994-2005, Eagleware Corporation All rights reserved.

More information

Design and Simulation of COFDM for High Speed Wireless Communication and Performance Analysis

Design and Simulation of COFDM for High Speed Wireless Communication and Performance Analysis Design and Simulation of COFDM for High Speed Wireless Communication and Performance Analysis Arun Agarwal ITER College, Siksha O Anusandhan University Department of Electronics and Communication Engineering

More information

Internet Access to High Speed Trains using the IEEE a System

Internet Access to High Speed Trains using the IEEE a System Internet Access to High Speed Trains using the IEEE 82.11a System DANNIEL BYBERG KRISTIAN CALAIS PAUL JONSSON Department of Signals and Systems CHALMERS UNIVERSITY OF TECHNOLOGY Göteborg, Sweden 23 EX26/24

More information

Lecture #2. EE 471C / EE 381K-17 Wireless Communication Lab. Professor Robert W. Heath Jr.

Lecture #2. EE 471C / EE 381K-17 Wireless Communication Lab. Professor Robert W. Heath Jr. Lecture #2 EE 471C / EE 381K-17 Wireless Communication Lab Professor Robert W. Heath Jr. Preview of today s lecture u Introduction to digital communication u Components of a digital communication system

More information

Available online at ScienceDirect. Procedia Technology 17 (2014 )

Available online at   ScienceDirect. Procedia Technology 17 (2014 ) Available online at www.sciencedirect.com ScienceDirect Procedia Technology 17 (2014 ) 107 113 Conference on Electronics, Telecommunications and Computers CETC 2013 Design of a Power Line Communications

More information

Advanced MIMO Systems for Maximum Reliability and Performance

Advanced MIMO Systems for Maximum Reliability and Performance DAAD Workshop on Embedded System Design Skopje, October 2009 for Maximum Reliability and Performance Zoran Stamenković IHP, Frankfurt (Oder) Germany Problem Definition MIMO techniques in wireless networks

More information

Keysight Technologies Testing WLAN Devices According to IEEE Standards. Application Note

Keysight Technologies Testing WLAN Devices According to IEEE Standards. Application Note Keysight Technologies Testing WLAN Devices According to IEEE 802.11 Standards Application Note Table of Contents The Evolution of IEEE 802.11...04 Frequency Channels and Frame Structures... 05 Frame structure:

More information

FPGA implementation of Generalized Frequency Division Multiplexing transmitter using NI LabVIEW and NI PXI platform

FPGA implementation of Generalized Frequency Division Multiplexing transmitter using NI LabVIEW and NI PXI platform FPGA implementation of Generalized Frequency Division Multiplexing transmitter using NI LabVIEW and NI PXI platform Ivan GASPAR, Ainoa NAVARRO, Nicola MICHAILOW, Gerhard FETTWEIS Technische Universität

More information