Software Architecture for a Multi-Protocol RFID Reader on Mobile Devices

Size: px
Start display at page:

Download "Software Architecture for a Multi-Protocol RFID Reader on Mobile Devices"

Transcription

1 Software Architecture for a Multi-Protocol RFID Reader on Mobile Devices Joon Goo Lee Seok Joong Hwang Seon Wook Kim Sunshin Ahn Department of Electronics and Computer Engineering Korea University, Seoul, Korea seon@korea.ac.kr, KyungHo Park Ji Hoon Koo Woo Shik Kang Communication and Network Laboratory Samsung Advanced Institute of Technology, Korea Abstract In RFID (Radio Frequency IDentification) systems, a tag reader or a tag interrogator communicates with tags, reads their identification codes, and accesses their related database through a network infrastructure. There are many research activities in RFID hardware systems, but there is few in software infrastructure, especially on mobile devices. This paper presents software architecture and implementation of a multi-protocol RFID reader on mobile devices such as mobile phones and PDAs. We have designed and implemented most functionalities of a RFID reader in software except for code modulation and demodulation to support multi-protocols and the next coming standards easily. Also, in order to embed RFID reader s functionalities on WIPI (Wireless Internet Platform for Interoperability) based mobile devices, our firmware interacts with Handset Adaptation Layer (HAL). Any WIPI application can access our RFID reader system and query tags information from Internet through HAL interfaces. We have prototyped our system on the ARM-based Excalibur FPGA with ipaq PDA. Keyword: RFID, mobile, multi-protocol, WIPI, HAL 1. Introduction Currently we are thinking about assigning an unique identification and its associated information to an object for an ubiquitous environment. In order to support the environment, we need to develop a system to allow us to access objects information from objects themselves and from an existing network infrastructure such as Internet and sensor networks. This work was supported by Samsung Advanced Institute of Technology, Korea. There are many currently available solutions in data delivery and management on a network infrastructure. But there are still many constraints to capture data from versatile objects. One of currently existing solutions are manual data recording or manual scanning of bar-codes, and more advanced solutions are automatic scanning of bar-codes and sophisticated machine vision/sensing systems. All of these solutions are very expensive, time consuming, and inaccurate. Even they have more significant constraints in real work surroundings, for example, due to intensity of illumination and dirty spots on bar-codes. But in this case, we cost expensively even for getting a simple information. One of the potential and attractive solutions to capture data easily from objects is to use RFID (Radio Frequency IDentification) systems. In RFID systems, we attach a tag onto an object, and an identification code is stored in memory of the tag. A tag reader or a tag interrogator communicates with the tag, reads the identification code from the tag, and accesses its related database through a network infrastructure for getting more information. Figure 1 shows a typical environment for mobile-based RFID systems. In general, an industrial reader system in delivery and manufacturing services is implemented as many big and heavy RFID readers at fixed locations, and the system is highly optimized for accuracy and speed performance. The RFID system in a mobile environment has some different scenarios from an industrial reader system. First, because a reader can be carried anywhere and anytime to support an ubiquitous computing/networking environment, it is very difficult to implement a good system in terms of speed and accuracy. For example, when we use readers in a market place or in a museum, we will try to read tags for an explanation of goods or a work of art at walk. In this environment, a reader collision problem becomes severe. Many solutions have been proposed, such as coloring [1] and colorwave [2] methods. But these meth-

2 Figure 1. A typical example of mobile-based RFID systems. ods cannot be easily adapted to real mobile worlds due to limited performance of passive tags. For example, passive tags cannot recognize more than one channels at one time. The tags only response at the same carrier frequency that a reader uses. This makes a tag to be confused when multiple readers try to access a tag simultaneously. Second, we must concern about flexibility of interface with mobile devices and RF modules more than performance of a reader. In a mobile environment a user doesn t want to read all tags around him/her. A user wants to read only a few tags at one time. In this paper, we focus on the second issue and present the software architecture for a multi-protocol RFID reader on mobile devices. There are many research activities in RFID hardware systems, but there is few in software infrastructure, especially on mobile devices. We have designed and implemented most functionalities of a RFID reader in software except for code modulation and demodulation to support multi-protocols and the next coming standards easily. The implemented software components are baseband modem APIs, a firmware including anti-collision engines, read/write functions and packetizer /unpacketizer of air interface commands/responses for each protocol. Also, in order to embed RFID reader s functionalities on mobile devices, our firmware interfaces with Handset Adaptation Layer (HAL) in the WIPI (Wireless Internet Platform for Interoperability) platform [3]. Through HAL interfaces, any WIPI application can access a RFID reader and query tags information from Internet. We have prototyped our system on the ARM-based Excalibur FPGA [4] with ipaq PDA. The paper is organized as the followings: Section 2 presents an architecture for a mobile multi-protocol RFID reader, and Section 3 describes the software architecture in detail. Section 4 presents implementation of our prototype system for verification, and Section 5 makes conclusion. 2 A Multi-Protocol RFID Reader for Mobile Devices In this section, we present an overview of our RFID reader architecture and discuss several major standard RFID protocols briefly. Figure 2 shows an overall software and hardware architecture of a multi-protocol RFID reader for our prototype system. The RFID reader consists of four parts: a RF circuit, baseband hardware logics, RFID software components, and a handset. The major modem hardware logic consists of a modulator and a demodulator. A modem controls a digital analog converter (DAC) for transmission, an analog digital converter (ADC) for reception, and a RF circuit for analog signals. While a modem is modulating, the transmitted data on a forward link are converted to rectangular pulses, and then filtered by a smoothing filter. In a double side band (DSB) transmission, a pulse shaped signal is transmitted to I and Q channels, which are tied to zero. In a single side band (SSB) transmission, I and Q channel signals are generated by a Hilbert transformer from the pulse shaped signal. These signals are mixed with a carrier frequency in a RF circuit and transmitted to tags finally. While a modem is demodulating, the received analog signals from

3 a RF circuit are passed to a bit extractor. These extracted bit symbols are decoded to logical bits, and then used in a firmware. The RFID software components consist of baseband modem APIs, a firmware, HAL interfaces, and WIPI-based applications. The baseband modem API provides interfaces to access baseband modem hardware logics and RF circuits for controlling modem hardware. The firmware includes anticollision algorithms, reader collision algorithms, interfaces with handset adaptation layer (HAL), and so on. The HAL is an abstract layer to provide hardware independence to an application [3]. Any WIPI-based application can access and control a RFID reader through HAL interfaces in an uniform manner. The software architecture will be described in detail in Section 3. # $ & ( * Table 1 shows forward and return link parameters and an anti-collision algorithm of each RFID protocol. It shows that ASK modulation is common to all the protocols, because it is easy to implement ASK modulation in a passive tag which has cost and power concerns. But there are many versatile baseband coding schemes [5]. Binary 1 and 0 can be represented in various line coding methods such as NRZ, Unipolar RZ, Manchester, Miller, FM0, and pulse time modulation (PTM) such as pulse width modulation (PWM) and pulse position modulation (PPM). RFID systems use one of these baseband coding schemes with considering an easy bit synchronization, a probability of error, a bandwidth, and receiver complexity. The details about coding schemes can be found in [6, 7, 8, 9]. An anti-collision algorithm of each RFID protocol is based on time division multiple access (TDMA) [5], because RFID systems are constrained by low computational ability, low power consumption, and little amount of memory. These constraints require a simple anti-collision algorithm. There are two major methods in implementation. One is ALOHA and the other is Binary Tree schemes. The original ALOHA is the simplest probabilistic method, but it is inefficient. For this reason, RFID systems use dynamic framed slotted ALOHA for efficiency. The Binary Tree scheme, a deterministic method of anti-collision, has many varieties such as Bit-by-Bit in EPC Class-0 and Bin slot in EPC Class-1 for fast identification rate. 3 Software Architecture Figure 3 shows an overall software architecture for a mobile-based multi-protocol RFID reader. We have implemented all RFID reader functions in software except for modulation and demodulation. It makes easy to support multiple protocols and to develop new standards in the near future. Our software architecture consists of four layers: baseband modem APIs, a firmware, a handset adaption layer, and a WIPI-based application [3]. Their details are described in the next subsections : - 9 > * & The software component for a RFID reader should allow users to control the hardware logics such as a modulator, a demodulator and a RF circuit, and it is provided in forms of baseband modem APIs. They provide interfaces to access baseband modem hardware logics and RF circuits for controlling modem hardware. Table 2 shows some example of our APIs. Additionally, the baseband modem APIs offer functions for transmitting /receiving bit streams from air interface commands and tag responses. There are various baseband coding schemes as shown in Table 1. If hardware does not support a certain encode/decode function, a software programmer can implement the function inside software manner in this layer or a transceiver part of each protocol. 2 $ > 4 The firmware includes three parts: an algorithmic part, a transceiver part, and miscellaneous functionalities. We separated an algorithmic and a transceiver parts for tag control because of easy programming and debugging. The algorithmic part includes an anti-collision engine, read/write and special function support. The transceiver part includes packetizing/unpacketizing functionalities for each protocol. Also the firmware provides HAL interfaces and miscellaneous functions. There are two types of anti-collision: a tag collision and a reader collision. Tag collision problems were solved by an anti-collision algorithm, as shown in Table 1. We considered air interface commands/responses and tag s state transitions for a tag collision arbitration. And we also meditated a reader collision problem. When multiple readers try to access one tag simultaneously, the tag may not answer because the tag accepts multiple channels. The tag may consider some or all of received signals as a noise. This implies that only one reader should access the tag at one time. In this situation, a coloring method using different channels may not work anymore [1, 2]. Another reader collision is occurred when a tag is replying to a correct reader and another reader attempts to send a command to the tag. In this case, the correct reader receives a tag response and an unexpected command together. If readers use different channels, the correct reader might extract the desiring tag signal from mixed signals. For these reader collision problem, we apply LBT (Listen Before Talk) and frequency hopping.

4 Figure 2. Overall software and hardware architecture of a multi-protocol RFID reader on mobile devices. Our firmware supports read/write functions and special commands. If a tag has user-writable memory, we need to provide read/write functionalities to access the memory. In this case, the firmware processes read/write commands with different parameters and methods for each supported protocol in one interface function. Also, the AutoID center, one of the famous RFID laboratory, proposes special commands, such as Kill command for protection of user privacy. EPC tags include this function essentially. If a tag is killed by this command with a password, the tag is deactivated forever. This helps you keep your privacy by stopping the tag s faculty before you get it. The firmware processes predefined commands with HAL. These commands have two types: a tag control and a reader control. The tag control commands include functionalities to read tag s ID and read/write data from/to user memory of tags. The reader control commands handle and examine the hardware including a RF circuit and a baseband hardware logic. The firmware packetizes and unpacketizes air interface commands/responses for each protocol. While a RFID reader is running, the firmware is waiting for a message from HAL. The received messages are decoded, and the firmware calls a proper function with the extracted parameters. We categorized HAL interface functions into tag associated functions, RF associated functions, reader associated functions, and reader environment associated functions. Each category and its example functions are shown in Table 3. There are many common functions to all protocols, such as CRC calculation of commands and responses, timer and delay, and so on. The functions are necessary to algorithmic and/or transceiver parts for most protocols, and they are in one functional block for efficiency and prevention of waste. 2 2 E G A RFID modem offers a firmware to applications through HAL, and HAL can access to modem logics and functions with this firmware. In WIPI, HAL is an abstract layer for hardware independence to be transplanted to any platform easily. The WIPI-based applications access hardware resources indirectly by calling HAL API functions. In this manner, any platform can be constructed independently regardless of hardware using the HAL API. The communication between HAL and the firmware is asynchronous. At first, HAL sends a command and a firmware accepts and excutes this command. After that, the firmware responses a message back to HAL. But in this manner, a program may wait forever until the response comes while channel is disconnected. Since this problem can occur, an asynchronous method is implemented in forms of Listeners in WIPI JAVA API and registered Callback functions in WIPI C API.

5 Figure 3. Overall software architecture of a RFID reader for mobile devices such as mobile phones and PDAs. Table 1. Link parameters and anti-collision algorithms in standard RFID protocols [6, 7, 8, 9]. Forward Link Return Link Protocol Modulation Baseband Modulation Baseband Anti-Collision coding coding ISO PIE FM0 Dynamic framed Type A slotted ALOHA ISO Manchester FM0 Binary Tree Type B ASK ASK EPC Class-0 PWM Subcarrier Binary Tree FSK (Bit-by-Bit) EPC Class-1 PWM BitCell Binary Tree Encoding (Bin slot) EPC Class-1 ASK or PIE ASK or FM0 or Dynamic framed Generation2 PR-ASK PSK Miller slotted ALOHA

6 Table 2. Example of baseband model APIs. Function name Description BBM PLL init Initialize PLL BBM TX ask modulation rate Set ASK modulation rate BBM TX mode Set TX mode to OOK or the others BBM RX gain analog Set RX gain BBM TX gain analog Set TX gain BBM TX link frequency Set forward link frequency BBM RX link frequency Set return link frequency BBM TX transmit bitstream Transmit baseband coded bit stream BBM RX receive bitstream Receive baseband coded bit stream BBM PA turn on/off Turn on/off PA BBM RF turn on/off Turn on/off RF Table 3. Examples of HAL interface functions in each category. Category Function Description Tag associated functions readids Read tags Identification codes writeuserdata Write data to user data memory readuserdata Read data from user data memory RF associated functions Reader functions associated Reader environment associated functions kill set/getrfstrength set/getregion setcrfr set/getreadcycles set/getregister getepc getmanufacturer getmodel Let a tag deactivate Set/get RF signal strength Set/get Region and its regulation Set carrier frequency Set/get reader s read cycles Set/get register value of hardware logics Get an electronic product code of reader Get a manufacturer of reader Get a model of reader

7 Figure 4. Our prototyped multi-protocol RFID reader for mobile devices. 2 H J & * & Wireless Internet Platform for Interoperability (WIPI) is the common platform envisioned by the Korean Ministry of Information and Communication for running mobile applications on any handset independent to vendors [3]. WIPI serves as a backbone for content providers to develop applications that run seamlessly on any mobile platform. WIPI supports for multiple programming languages such as Java and C, and downloads and runs content provider applications in a binary format from applications servers. Using WIPI, any WIPI application can access a RFID reader through Handset Adaptation Layer (HAL) and query tags from Internet for additional information with network APIs extended for RFID systems. 4 Implementation Figure 4 shows a picture of our prototype system. We implemented our baseband modem logic on the ARMbased Excalibur FPGA, ultra high frequency (UHF) RF circuit with filters, direct conversion up/down mixers, a PLL, a power amplifier and palm sized antennas. The RFID firmware is running on ARM9 processor on the Excaliber. And embodied baseband modem APIs control forward/return link frequencies, transmitting /receiving bit streams, PLL, TX/RX gains, and turn on/off each RF part. Our firmware has functions of inventory using anti-collision algorithms, and also has read/write functions if a protocol supports. Also special functionalities for security such as kill or lock at EPC protocols are accomplished. A HAL application was coded on a personal digital assistants (PDA) using a graphic user interface (GUI) based on PocketPC Using a universal asynchronous receiver/transmitter (UART), the HAL application on PDA and the RFID baseband modem were connected. When a user chooses a HAL command on GUI, the HAL application sends a message to the UART with predefined format and waits for a response from the firmware. The firmware of the baseband modem receives this message from the HAL application and decodes the message. After decoding the message, the firmware calls and executes a suitable function in an algorithmic part or a baseband modem API. If the firmware executes the function successfully, it sends back a response message, also a predefined format, to the HAL application. The HAL application displays proper information according to the responded message. 5 Conclusions and Future works In this paper, we presented software architecture and implementation of a multi-protocol RFID reader on mobile devices such as mobile phones and PDAs. There are many research activities in RFID hardware systems, but there is few in software infrastructure, especially on mobile devices. We have implemented most functionalities of a RFID reader in software except for code modulation and demodulation to support multi-protocols and the next coming standards eas-

8 ily. Our software architecture consists of four layers, such as baseband modem APIs, a firmware, a handset adaption layer, and a WIPI-based application. The baseband modem APIs allow us to control hardware logics such as a modulator, a demodulator and a RF circuit, and the firmware includes RFID protocol engines. Also, in order to embed RFID reader s functionalities on mobile devices, our firmware interfaces with HAL on the WIPI platform. Through HAL interfaces, any WIPI application can access a RFID reader and query tags information from Internet. We have prototyped our system on the ARM-based Excalibur FPGA with ipaq PDA for verification. Our on-going project is to make a baseband modem chip including all hardware logics, such as a modulator and a demodulator, and software parts such as a firmware and baseband modem APIs. This work is almost over. And we have a plan to develop a programmable RFID processor which eliminates all dedicated hardware logics for low power consumption, small size, efficiency and flexibility. References [1] Daniel W. Engels and Sanjay E. Sarma. The reader collision problem. IEEE Transactions on Systems, Mans, and Cybernetics, 3, October [2] James Waldrop, Daniel W. Engels, and Sanjay E. Sarma. Colorwave: An anticollision algorithm for the reader collision problem. In International Conference on Communication, volume 2, pages , May [3] Wireless Internet Platform for Interoperability (WIPI). [4] Excalibur devices. [5] Klaus Finkenzeller; translated by Rachel Waddington. RFID Handbook. John Wiley & Sons, John Wiley & Sons Ltd, The Atrium, Southern Gate, Chichester, West Sussex PO19 8SQ, England, [6] ISO/IEC FDIS , ISO standard document. [7] EPC class 0, EPC global standard documents. technology/specification.html. [8] EPC class 1, EPC global standard documents. technology/specification.html. [9] EPC class 1 gen 2, EPC global standard documents. technology/specification.html.

Dynamic Framed Slotted ALOHA Algorithms using Fast Tag Estimation Method for RFID System

Dynamic Framed Slotted ALOHA Algorithms using Fast Tag Estimation Method for RFID System Dynamic Framed Slotted AOHA Algorithms using Fast Tag Estimation Method for RFID System Jae-Ryong Cha School of Electrical and Computer Engineering Ajou Univ., Suwon, Korea builder@ajou.ac.kr Jae-Hyun

More information

MOBILE COMPUTING 2/25/17. What is RFID? RFID. CSE 40814/60814 Spring Radio Frequency IDentification

MOBILE COMPUTING 2/25/17. What is RFID? RFID. CSE 40814/60814 Spring Radio Frequency IDentification MOBILE COMPUTING CSE 40814/60814 Spring 2017 What is RFID? Radio Frequency IDentification Who Are You? I am Product X RFID ADC (automated data collection) technology that uses radio-frequency waves to

More information

An Empirical Study of UHF RFID Performance. Michael Buettner and David Wetherall Presented by Qian (Steve) He CS Prof.

An Empirical Study of UHF RFID Performance. Michael Buettner and David Wetherall Presented by Qian (Steve) He CS Prof. An Empirical Study of UHF RFID Performance Michael Buettner and David Wetherall Presented by Qian (Steve) He CS 577 - Prof. Bob Kinicki Overview Introduction Background Knowledge Methodology and Tools

More information

Design of Adaptive RFID Reader based on DDS and RC522 Li Yang, Dong Zhi-Hong, Cong Dong-Sheng

Design of Adaptive RFID Reader based on DDS and RC522 Li Yang, Dong Zhi-Hong, Cong Dong-Sheng International Conference on Applied Science and Engineering Innovation (ASEI 2015) Design of Adaptive RFID Reader based on DDS and RC522 Li Yang, Dong Zhi-Hong, Cong Dong-Sheng Beijing Key Laboratory of

More information

DiCa: Distributed Tag Access with Collision-Avoidance among Mobile RFID Readers

DiCa: Distributed Tag Access with Collision-Avoidance among Mobile RFID Readers DiCa: Distributed Tag Access with Collision-Avoidance among Mobile RFID Readers Kwang-il Hwang, Kyung-tae Kim, and Doo-seop Eom Department of Electronics and Computer Engineering, Korea University 5-1ga,

More information

Analysis and Simulation of UHF RFID System

Analysis and Simulation of UHF RFID System ICSP006 Proceedings Analysis and Simulation of UHF RFID System Jin Li, Cheng Tao Modern Telecommunication Institute, Beijing Jiaotong University, Beijing 00044, P. R. China Email: lijin3@63.com Abstract

More information

Complete Software Defined RFID System Using GNU Radio

Complete Software Defined RFID System Using GNU Radio Complete Defined RFID System Using GNU Radio Aurélien Briand, Bruno B. Albert, and Edmar C. Gurjão, Member, IEEE, Abstract In this paper we describe a complete Radio Frequency Identification (RFID) system,

More information

We are IntechOpen, the first native scientific publisher of Open Access books. International authors and editors. Our authors are among the TOP 1%

We are IntechOpen, the first native scientific publisher of Open Access books. International authors and editors. Our authors are among the TOP 1% We are IntechOpen, the first native scientific publisher of Open Access books 3,350 108,000 1.7 M Open access books available International authors and editors Downloads Our authors are among the 151 Countries

More information

Fully integrated UHF RFID mobile reader with power amplifiers using System-in-Package (SiP)

Fully integrated UHF RFID mobile reader with power amplifiers using System-in-Package (SiP) Fully integrated UHF RFID mobile reader with power amplifiers using System-in-Package (SiP) Hyemin Yang 1, Jongmoon Kim 2, Franklin Bien 3, and Jongsoo Lee 1a) 1 School of Information and Communications,

More information

RFID Multi-hop Relay Algorithms with Active Relay Tags in Tag-Talks-First Mode

RFID Multi-hop Relay Algorithms with Active Relay Tags in Tag-Talks-First Mode International Journal of Networking and Computing www.ijnc.org ISSN 2185-2839 (print) ISSN 2185-2847 (online) Volume 4, Number 2, pages 355 368, July 2014 RFID Multi-hop Relay Algorithms with Active Relay

More information

Physics of RFID. Pawel Waszczur McMaster RFID Applications Lab McMaster University

Physics of RFID. Pawel Waszczur McMaster RFID Applications Lab McMaster University 1 Physics of RFID Pawel Waszczur McMaster RFID Applications Lab McMaster University 2 Agenda Radio Waves Active vs. Passive Near field vs. Far field Behavior of UHF fields Modulation & Signal Coding 3

More information

Design Of A Rceat Architecture For Detecting Multi- Bit Error In RFID

Design Of A Rceat Architecture For Detecting Multi- Bit Error In RFID Design Of A Rceat Architecture For Detecting Multi- Bit Error In RFID Indugula Anusha Devi 1, B. Bala Krishna 2,V N M Brahmanandam 3 1M.Tech student,2 Assistant Professor,3Assistant Professor V.S.Lakshmi

More information

Evaluation of the Effect of Gen2 Parameters on the UHF RFID Tag Read Rate

Evaluation of the Effect of Gen2 Parameters on the UHF RFID Tag Read Rate International Journal of Latest Trends in Computing (E-ISSN: 2045-5364) 160 Evaluation of the Effect of Gen2 Parameters on the UHF RFID Tag Read Rate Jussi Nummela, Petri Oksa, Leena Ukkonen and Lauri

More information

RFID HANDBOOK THIRD EDITION

RFID HANDBOOK THIRD EDITION RFID HANDBOOK THIRD EDITION RFID HANDBOOK FUNDAMENTALS AND APPLICATIONS IN CONTACTLESS SMART CARDS, RADIO FREQUENCY IDENTIFICATION AND NEAR-FIELD COMMUNICATION, THIRD EDITION Klaus Finkenzeller Giesecke

More information

Course Project. Project team forming deadline has passed Project teams will be announced soon Next step: project proposal presentation

Course Project. Project team forming deadline has passed Project teams will be announced soon Next step: project proposal presentation Course Project Project team forming deadline has passed Project teams will be announced soon Next step: project proposal presentation Presentation slides and one-page proposal document are due on Jan 30

More information

HF-RFID. References. School of Engineering

HF-RFID. References. School of Engineering HF-RFID MSE, HF-RFID, 1 References [1] Klaus Finkenzeller, RFID-Handbuch, 5. Auflage, Hanser, 2008. [2] R. Küng, M. Rupf, RFID-Blockkurs, ergänzende MSE-Veranstaltung, ZHAW, 2011. Kontakt: ZHAW Zürcher

More information

Simulation Study for the Decoding of UHF RFID Signals

Simulation Study for the Decoding of UHF RFID Signals PIERS ONLINE, VOL. 3, NO. 7, 2007 955 Simulation Study for the Decoding of UHF RFID Signals Shengli Wang 1, Shan Qiao 1,2, Shaoyuan Zheng 1, Zhiguang Fan 1 Jiangtao Huangfu 1, and Lixin Ran 1 1 Department

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

DIGITAL BASEBAND PROCESSOR DESIGN OF PASSIVE RADIO FREQUENCY IDENTIFICATION TAG FOR ULTRA WIDEBAND TRANSCEIVER

DIGITAL BASEBAND PROCESSOR DESIGN OF PASSIVE RADIO FREQUENCY IDENTIFICATION TAG FOR ULTRA WIDEBAND TRANSCEIVER DIGITAL BASEBAND PROCESSOR DESIGN OF PASSIVE RADIO FREQUENCY IDENTIFICATION TAG FOR ULTRA WIDEBAND TRANSCEIVER Nallapu Vasantha 1, S. Vidyarani 2 1 M. Tech Scholar (DECS), 2 Associate Professor (DIP) Nalanda

More information

Contents and Preface of the RFID-Handbook

Contents and Preface of the RFID-Handbook Contents and Preface of the RFID-Handbook RFID-Handbook, Wiley & Sons LTD 1999 Radio-Frequency Identification: Fundamentals and Applications Klaus Finkenzeller, Munich, Germany ISBN 0-471-98851-0 Contents

More information

A Novel Anti-Collision Algorithm for High-Density RFID Tags

A Novel Anti-Collision Algorithm for High-Density RFID Tags A Novel Anti-Collision Algorithm for High-Density RFID s 33 A Novel Anti-Collision Algorithm for High-Density RFID s Sarawut Makwimanloy 1, Piya Kovintavewat 2, Urachada Ketprom 3, and Charturong Tantibundhit

More information

Design and Implementation of FPGA Based Digital Base Band Processor for RFID Reader

Design and Implementation of FPGA Based Digital Base Band Processor for RFID Reader Indian Journal of Science and Technology, Vol 10(1), DOI: 10.17485/ijst/2017/v10i1/109394, January 2017 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 Design and Implementation of FPGA Based Digital

More information

RFID Frequency Overview to Application fit

RFID Frequency Overview to Application fit RFID Frequency Overview to Application fit 1 The Radio Spectrum RFID tags exhibit different characteristics at different frequencies and it is highly unlikely that there will ever be one tag that can be

More information

Politecnico di Milano Advanced Network Technologies Laboratory. Radio Frequency Identification

Politecnico di Milano Advanced Network Technologies Laboratory. Radio Frequency Identification Politecnico di Milano Advanced Network Technologies Laboratory Radio Frequency Identification RFID in Nutshell o To Enhance the concept of bar-codes for faster identification of assets (goods, people,

More information

RFID. Contents and form. Petr Bureš, Faculty of transportation sciences Czech technical university in Prague

RFID. Contents and form. Petr Bureš, Faculty of transportation sciences Czech technical university in Prague RFID Contents and form Petr Bureš, bures@fd.cvut.cz Faculty of transportation sciences Czech technical university in Prague RFID considerations Critical performance variables in an RFID system are the

More information

Design of UHF RFID Emulators with Applications to RFID Testing and Data Transport

Design of UHF RFID Emulators with Applications to RFID Testing and Data Transport Design of UHF RFID Emulators with Applications to RFID Testing and Data Transport Rich Redemske MIT AutoID Lab Cambridge, MA, USA redemske@mit.edu Rich Fletcher TagSense, Inc. Cambridge, MA, USA rf@tagsense.com

More information

Radio Frequency Identification

Radio Frequency Identification Radio Frequency Identification Retail item level Radio Frequency Tagging Market size: >1 Trillion die/year (Retail, item tags) Economic impact 5% of sales lost due to not on shelf 5-15% of some items stolen

More information

Double Time Slot RFID Anti-collision Algorithm based on Gray Code

Double Time Slot RFID Anti-collision Algorithm based on Gray Code Double Time Slot RFID Anti-collision Algorithm based on Gray Code Hongwei Deng 1 School of Computer Science and Technology, Hengyang Normal University; School of Information Science and Engineering, Central

More information

Bloodhound RMS Product Overview

Bloodhound RMS Product Overview Page 2 of 10 What is Guard Monitoring? The concept of personnel monitoring in the security industry is not new. Being able to accurately account for the movement and activity of personnel is not only important

More information

Collision Resolution in ISO c Passive RFID

Collision Resolution in ISO c Passive RFID 239 ACES JOURNAL, VOL. 25, NO. 3, MARCH 2010 Collision Resolution in ISO 18000-6c Passive RFID Yuan Sun, Peter J. Hawrylak, Zhi-Hong Mao and Marlin H. Mickle RFID Center of Excellence Electrical and Computer

More information

RF Basics 15/11/2013

RF Basics 15/11/2013 27 RF Basics 15/11/2013 Basic Terminology 1/2 dbm is a measure of RF Power referred to 1 mw (0 dbm) 10mW(10dBm), 500 mw (27dBm) PER Packet Error Rate [%] percentage of the packets not successfully received

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

RFID. Identification systems (IDFS) Department of Control and Telematics Faculty of Transportation Sciences, CTU in Prague

RFID. Identification systems (IDFS) Department of Control and Telematics Faculty of Transportation Sciences, CTU in Prague RFID Identification systems (IDFS) Department of Control and Telematics Faculty of Transportation Sciences, CTU in Prague Discussion What is RFID? page 2 RFID Radio Frequency Identification (RFID) is a

More information

Design and Implementation of an Augmented RFID System

Design and Implementation of an Augmented RFID System Design and Implementation of an Augmented RFID System by Alexey Borisenko Thesis submitted to the Faculty of Graduate and Postdoctoral Studies In partial fulfillment of the requirements For the M.A.Sc.

More information

WJM1000. Next Generation RFID Reader Module Based on the WJC200 Gen2 RFID reader chipset. Key Features

WJM1000. Next Generation RFID Reader Module Based on the WJC200 Gen2 RFID reader chipset. Key Features Key Features Multi-protocol support: ISO 18000-6C (Gen2) & ISO 18000-6B Dynamic RF output power: 10dBm to 24dBm range Two antenna ports for added flexibility Special high performance single tag access

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

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

Dual core architecture with custom N-PLC optimized DSP and Data Link Layer / Application 32bit controller

Dual core architecture with custom N-PLC optimized DSP and Data Link Layer / Application 32bit controller SM2480 Integrated N-PLC SCADA Controller for Solar Micro-inverters and Smart Ballasts Communication technology by: Semitech Semiconductor Product Overview The SM2480 is a highly integrated Supervisory

More information

Improving Reader Performance of an UHF RFID System Using Frequency Hopping Techniques

Improving Reader Performance of an UHF RFID System Using Frequency Hopping Techniques 1 Improving Reader Performance of an UHF RFID System Using Frequency Hopping Techniques Ju-Yen Hung and Venkatesh Sarangan *, MSCS 219, Computer Science Department, Oklahoma State University, Stillwater,

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

RFID Integrated Teacher Monitoring

RFID Integrated Teacher Monitoring RFID Integrated Teacher Monitoring Introduction Article by Adewopo Adeniyi M.Sc, Texila American University, Nigeria Email: preciousadewopon@yahoo.com Radio Frequency Identification (RFID) is a generic

More information

Multi Frequency RFID Read Writer System

Multi Frequency RFID Read Writer System Multi Frequency RFID Read Writer System Uppala Sunitha 1, B Rama Murthy 2, P Thimmaiah 3, K Tanveer Alam 1 PhD Scholar, Department of Electronics, Sri Krishnadevaraya University, Anantapur, A.P, India

More information

STRS COMPLIANT FPGA WAVEFORM DEVELOPMENT

STRS COMPLIANT FPGA WAVEFORM DEVELOPMENT STRS COMPLIANT FPGA WAVEFORM DEVELOPMENT Jennifer Nappier (Jennifer.M.Nappier@nasa.gov); Joseph Downey (Joseph.A.Downey@nasa.gov); NASA Glenn Research Center, Cleveland, Ohio, United States Dale Mortensen

More information

A Flexible Dual Frequency Testbed for RFID

A Flexible Dual Frequency Testbed for RFID A Flexible Dual Frequency Testbed for RFID Christoph Angerer, Martin Holzer, Bastian Knerr, Markus Rupp Institute of Communications and Radio Frequency Engineering Vienna University of Technology Gusshausstrasse

More information

UTILIZATION OF AN IEEE 1588 TIMING REFERENCE SOURCE IN THE inet RF TRANSCEIVER

UTILIZATION OF AN IEEE 1588 TIMING REFERENCE SOURCE IN THE inet RF TRANSCEIVER UTILIZATION OF AN IEEE 1588 TIMING REFERENCE SOURCE IN THE inet RF TRANSCEIVER Dr. Cheng Lu, Chief Communications System Engineer John Roach, Vice President, Network Products Division Dr. George Sasvari,

More information

Integration of All Required Functions for Reader and Tag Testing into a single unit Supports 840 MHz ~ 960 MHz UHF RFID Supports ISO/IEC Air

Integration of All Required Functions for Reader and Tag Testing into a single unit Supports 840 MHz ~ 960 MHz UHF RFID Supports ISO/IEC Air Integration of All Required Functions for Reader and Tag Testing into a single unit Supports 840 MHz ~ 960 MHz UHF RFID Supports ISO/IEC 18000-6 Air Interface Protocol Reader and Tag Emulator Functions

More information

RFID ANTI-COLLISION TECHNIQUE: COHERENT COLLISION RONALD J. ROTH THESIS

RFID ANTI-COLLISION TECHNIQUE: COHERENT COLLISION RONALD J. ROTH THESIS RFID ANTI-COLLISION TECHNIQUE: COHERENT COLLISION BY RONALD J. ROTH THESIS Submitted in partial fulfillment of the requirements for the degree of Master of Science in Electrical Engineering in the Graduate

More information

ORCA-50 Handheld Data Terminal UHF Demo Manual V1.0

ORCA-50 Handheld Data Terminal UHF Demo Manual V1.0 ORCA-50 UHF Demo Manual V1.0 ORCA-50 Handheld Data Terminal UHF Demo Manual V1.0 Eximia Srl. www.eximia.it - www.rfidstore.it mario.difloriano@eximia.it 1 Eximia Srl www.eximia.it - www.rfidstore.it Catelogue

More information

RFID Systems, an Introduction Sistemi Wireless, a.a. 2013/2014

RFID Systems, an Introduction Sistemi Wireless, a.a. 2013/2014 RFID Systems, an Introduction Sistemi Wireless, a.a. 2013/2014 Un. of Rome La Sapienza Chiara Petrioli, Gaia Maselli Department of Computer Science University of Rome Sapienza Italy RFID Technology Ø RFID

More information

TC-2600A RFID Tester

TC-2600A RFID Tester TC-2600A RFID Tester Integration of All required Functions for Reader and Tag Testing Into a Single Unit Supports 860MHz ~ 960MHz UHF RFID Supports ISO/IEC 18000-6 Air Interface Protocol Reader and Tag

More information

Politecnico di Milano Advanced Network Technologies Laboratory. Radio Frequency Identification

Politecnico di Milano Advanced Network Technologies Laboratory. Radio Frequency Identification Politecnico di Milano Advanced Network Technologies Laboratory Radio Frequency Identification 1 RFID in Nutshell o To Enhance the concept of bar-codes for faster identification of assets (goods, people,

More information

Anti-Collision RFID System Based on Combination of TD and Gold Code Techniques

Anti-Collision RFID System Based on Combination of TD and Gold Code Techniques , pp.78-83 http://dx.doi.org/10.14257/astl.2015.95.15 Anti-Collision RFID System Based on Combination of TD and Gold Code Techniques Grishma Khadka 1, Tae-yun Kim 2, Suk-seung Hwang 3 1 Dept. of Advanced

More information

UNIT 2 DIGITAL COMMUNICATION DIGITAL COMMUNICATION-Introduction The techniques used to modulate digital information so that it can be transmitted via microwave, satellite or down a cable pair is different

More information

RFID Systems and Applications in Positioning

RFID Systems and Applications in Positioning Tang Zimu RFID Systems and Applications in Positioning Bachelor s Thesis Information Technology May 2010 2 DESCRIPTION Date of the bachelor's thesis! 17th, may 2010 Author(s) Tang Zimu Name of the bachelor's

More information

AN797 WDS USER S GUIDE FOR EZRADIO DEVICES. 1. Introduction. 2. EZRadio Device Applications Radio Configuration Application

AN797 WDS USER S GUIDE FOR EZRADIO DEVICES. 1. Introduction. 2. EZRadio Device Applications Radio Configuration Application WDS USER S GUIDE FOR EZRADIO DEVICES 1. Introduction Wireless Development Suite (WDS) is a software utility used to configure and test the Silicon Labs line of ISM band RFICs. This document only describes

More information

CS601 Data Communication Solved Objective For Midterm Exam Preparation

CS601 Data Communication Solved Objective For Midterm Exam Preparation CS601 Data Communication Solved Objective For Midterm Exam Preparation Question No: 1 Effective network mean that the network has fast delivery, timeliness and high bandwidth duplex transmission accurate

More information

Faculty of Information Engineering & Technology. The Communications Department. Course: Advanced Communication Lab [COMM 1005] Lab 6.

Faculty of Information Engineering & Technology. The Communications Department. Course: Advanced Communication Lab [COMM 1005] Lab 6. Faculty of Information Engineering & Technology The Communications Department Course: Advanced Communication Lab [COMM 1005] Lab 6.0 NI USRP 1 TABLE OF CONTENTS 2 Summary... 2 3 Background:... 3 Software

More information

Optimized BPSK and QAM Techniques for OFDM Systems

Optimized BPSK and QAM Techniques for OFDM Systems I J C T A, 9(6), 2016, pp. 2759-2766 International Science Press ISSN: 0974-5572 Optimized BPSK and QAM Techniques for OFDM Systems Manikandan J.* and M. Manikandan** ABSTRACT A modulation is a process

More information

Application Note: IQ Filtering in an RFID Reader Using Anadigm Integrated circuits,

Application Note: IQ Filtering in an RFID Reader Using Anadigm Integrated circuits, Application Note: IQ Filtering in an RFID Reader Using Anadigm Integrated circuits, Rev: 1.0.3 Date: 3 rd April 2006 We call this multi-chip circuit solution RangeMaster3, It uses Anadigm s. RangeMaster2

More information

Collision Avoidance in a Dense RFID Network

Collision Avoidance in a Dense RFID Network Collision Avoidance in a Dense RFID Network Shweta Jain Computer Science Department Stony Brook University Stony Brook, NY shweta@cs.sunysb.edu Samir R. Das Computer Science Department Stony Brook University

More information

Wavedancer A new ultra low power ISM band transceiver RFIC

Wavedancer A new ultra low power ISM band transceiver RFIC Wavedancer 400 - A new ultra low power ISM band transceiver RFIC R.W.S. Harrison, Dr. M. Hickson Roke Manor Research Ltd, Old Salisbury Lane, Romsey, Hampshire, SO51 0ZN. e-mail: roscoe.harrison@roke.co.uk

More information

IEEE JOURNAL OF SOLID-STATE CIRCUITS, VOL. 43, NO. 3, MARCH

IEEE JOURNAL OF SOLID-STATE CIRCUITS, VOL. 43, NO. 3, MARCH IEEE JOURNAL OF SOLID-STATE CIRCUITS, VOL. 43, NO. 3, MARCH 2008 729 A Single-Chip CMOS Transceiver for UHF Mobile RFID Reader Ickjin Kwon, Member, IEEE, Yunseong Eo, Member, IEEE, Heemun Bang, Kyudon

More information

Design And Implementation of FM0/Manchester coding for DSRC. Applications

Design And Implementation of FM0/Manchester coding for DSRC. Applications Design And Implementation of / coding for DSRC Applications Supriya Shivaji Garade, Prof.P.R.Badadapure Department of Electronics and Telecommunication JSPM s Imperial College of Engineering and Research

More information

VC7300-Series Product Brief

VC7300-Series Product Brief VC7300-Series Product Brief Version: 1.0 Release Date: Jan 16, 2019 Specifications are subject to change without notice. 2018 Vertexcom Technologies, Inc. This document contains information that is proprietary

More information

Extending the Read Range of UHF Mobile RFID Readers: Arbitration Methods Based on Interference Estimation

Extending the Read Range of UHF Mobile RFID Readers: Arbitration Methods Based on Interference Estimation J Electr Eng Technol Vol. 9, No.?: 742-?, 2014 http://dx.doi.org/10.5370/jeet.2014.9.5.742 ISSN(Print) 1975-0102 ISSN(Online) 2093-7423 Extending the Read Range of UHF Mobile RFID Readers: Arbitration

More information

Extending the Read Range of UHF Mobile RFID Readers: Arbitration Methods Based on Interference Estimation

Extending the Read Range of UHF Mobile RFID Readers: Arbitration Methods Based on Interference Estimation J Electr Eng Technol Vol. 9, No. 6: 2025-2035, 2014 http://dx.doi.org/10.5370/jeet.2014.9.6.2025 ISSN(Print) 1975-0102 ISSN(Online) 2093-7423 Extending the Read Range of UHF Mobile RFID Readers: Arbitration

More information

NAVAL POSTGRADUATE SCHOOL THESIS

NAVAL POSTGRADUATE SCHOOL THESIS NAVAL POSTGRADUATE SCHOOL MONTEREY, CALIFORNIA THESIS DATA INTEGRITY IN RFID SYSTEMS by Nikolaos Alchazidis September 2006 Thesis Advisor: Co- Advisor: Weilian Su Tri T. Ha Approved for public release;

More information

In this lecture, we will look at how different electronic modules communicate with each other. We will consider the following topics:

In this lecture, we will look at how different electronic modules communicate with each other. We will consider the following topics: In this lecture, we will look at how different electronic modules communicate with each other. We will consider the following topics: Links between Digital and Analogue Serial vs Parallel links Flow control

More information

Specification for RFID Air Interface

Specification for RFID Air Interface Specification for RFID Air Interface EPC Radio-Frequency Identity Protocols Class-1 Generation-2 UHF RFID Protocol for Communications at 860 MHz 960 MHz Version 1.0.9 Copyright 2004 EPCglobal Inc, All

More information

PAPER Novel Dynamic Framed-Slotted ALOHA Using Litmus Slots in RFID Systems

PAPER Novel Dynamic Framed-Slotted ALOHA Using Litmus Slots in RFID Systems IEICE TRANS. COMMUN., VOL.E95 B, NO.4 APRIL 2012 1375 PAPER Novel Dynamic Framed-Slotted ALOHA Using Litmus Slots in RFID Systems Soon-Bin YIM, Jongho PARK, Nonmembers, and Tae-Jin LEE a), Member SUMMARY

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

INDY R2000 Module Series Specification

INDY R2000 Module Series Specification 1 Table 1: Module Overview Module Type M-2600 M-2800 Real Photo RF Channel Single Channel Four channel RF Connector MMCX SMA Antenna Connection Mode Can be configured as a single Bistatic is unavailable

More information

CS601-Data Communication Latest Solved Mcqs from Midterm Papers

CS601-Data Communication Latest Solved Mcqs from Midterm Papers CS601-Data Communication Latest Solved Mcqs from Midterm Papers May 07,2011 Lectures 1-22 Moaaz Siddiq Latest Mcqs MIDTERM EXAMINATION Spring 2010 Question No: 1 ( Marks: 1 ) - Please choose one Effective

More information

CS 294-7: Wireless Local Area Networks. Professor Randy H. Katz CS Division University of California, Berkeley Berkeley, CA

CS 294-7: Wireless Local Area Networks. Professor Randy H. Katz CS Division University of California, Berkeley Berkeley, CA CS 294-7: Wireless Local Area Networks Professor Randy H. Katz CS Division University of California, Berkeley Berkeley, CA 94720-1776 1996 1 Desirable Features Ability to operate worldwide Minimize power

More information

20 MHz-3 GHz Programmable Chirp Spread Spectrum Generator for a Wideband Radio Jamming Application

20 MHz-3 GHz Programmable Chirp Spread Spectrum Generator for a Wideband Radio Jamming Application J Electr Eng Technol Vol. 9, No.?: 742-?, 2014 http://dx.doi.org/10.5370/jeet.2014.9.?.742 ISSN(Print) 1975-0102 ISSN(Online) 2093-7423 20 MHz-3 GHz Programmable Chirp Spread Spectrum Generator for a Wideband

More information

RFID Transponder Collision Control Algorithm

RFID Transponder Collision Control Algorithm Wireless Pers Commun (2011) 59:689 711 DOI 10.1007/s11277-010-9932-8 RFID Transponder Collision Control Algorithm Ahmed Wasif Reza Tan Kim Geok Kiew Joh Chia Kaharudin Dimyati Published online: 21 February

More information

Further hacks on the Calypso platform

Further hacks on the Calypso platform or How to turn a phone into a BTS 29C3, December 29th, 2012 About the speaker Linux and free software geek since 1999 M.Sc. in C.S. + some E.E. General orientation towards low level Embedded, Kernel, Drivers

More information

International Journal of Advanced Research in Computer Science and Software Engineering

International Journal of Advanced Research in Computer Science and Software Engineering Volume 3, Issue 1, January 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Design of Digital

More information

CTD600 Communication Trainer kit

CTD600 Communication Trainer kit kit Digital RELATED PRODUCTS v Analog s v Optical Fibers s v Digital and Analog s v Communication Electronic Trainers v Function Generator and Power Supply v Multiple Signal Generator and 1 Line Code 2

More information

RFID - a basic introduction

RFID - a basic introduction RFID - a basic introduction Sophie Bruce Supervisor: Jerzy Dabrowski May 10, 2016 Contents 1 Introduction 1 2 What is RFID? 2 2.1 Transponders................................. 2 2.1.1 Physical principles

More information

Lecture 23: Media Access Control. CSE 123: Computer Networks Alex C. Snoeren

Lecture 23: Media Access Control. CSE 123: Computer Networks Alex C. Snoeren Lecture 23: Media Access Control CSE 123: Computer Networks Alex C. Snoeren Overview Finish encoding schemes Manchester, 4B/5B, etc. Methods to share physical media: multiple access Fixed partitioning

More information

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 98 Chapter-5 ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 99 CHAPTER-5 Chapter 5: ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION S.No Name of the Sub-Title Page

More information

Definition of RF-ID. Lecture on RF-IDs

Definition of RF-ID. Lecture on RF-IDs Definition of RF-ID RF-ID: Radio Frequency Identification. Indicates the use of Electromagnetic waves to detect and identify TAGS (i.e. labels) purposely attached to objects Basic components (2) Interrogator

More information

CONFORMANCE TEST SYSTEM DESIGN FOR ISO/IEC MODE 1 PASSIVE RFID. Danlu Rong. B.S. in Electrical Engineering, Southeast University, China, 2008

CONFORMANCE TEST SYSTEM DESIGN FOR ISO/IEC MODE 1 PASSIVE RFID. Danlu Rong. B.S. in Electrical Engineering, Southeast University, China, 2008 CONFORMANCE TEST SYSTEM DESIGN FOR ISO/IEC 18000-3 MODE 1 PASSIVE RFID by Danlu Rong B.S. in Electrical Engineering, Southeast University, China, 2008 Submitted to the Graduate Faculty of Swanson School

More information

3. ADD-ON MODULES Due to hardware limitations, such as antenna design, the base node is limited to a 433 MHz band. Two

3. ADD-ON MODULES Due to hardware limitations, such as antenna design, the base node is limited to a 433 MHz band. Two A Methodical Approach to the Implementation of a Detection Method for Low-Power Wireless Sensors Iztok Blazinšek Margento R&D d.o.o., Gosposvetska cesta 84, 2000 Maribor, Slovenija ABSTRACT This paper

More information

840 IEEE TRANSACTIONS ON AUTOMATION SCIENCE AND ENGINEERING, VOL. 7, NO. 4, OCTOBER 2010

840 IEEE TRANSACTIONS ON AUTOMATION SCIENCE AND ENGINEERING, VOL. 7, NO. 4, OCTOBER 2010 840 IEEE TRANSACTIONS ON AUTOMATION SCIENCE AND ENGINEERING, VOL. 7, NO. 4, OCTOBER 2010 Efficient Estimation and Collision-Group-Based Anticollision Algorithms for Dynamic Frame-Slotted ALOHA in RFID

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

ELT0040 RFID ja NFC. Enn Õunapuu ICT-643

ELT0040 RFID ja NFC. Enn Õunapuu ICT-643 ELT0040 RFID ja NFC Enn Õunapuu enn.ounapuu@ttu.ee ICT-643 What Is NFC? NFC or Near Field Communication is a short range high frequency wireless communication technology. NFC is mainly aimed for mobile

More information

Digital to Digital Encoding

Digital to Digital Encoding MODULATION AND ENCODING Data must be transformed into signals to send them from one place to another Conversion Schemes Digital-to-Digital Analog-to-Digital Digital-to-Analog Analog-to-Analog Digital to

More information

Communication with FCC s Office of Engineering Technology Regarding ISM Compliance of Power-Optimized Waveforms

Communication with FCC s Office of Engineering Technology Regarding ISM Compliance of Power-Optimized Waveforms Communication with FCC s Office of Engineering Technology Regarding ISM Compliance of Power-Optimized Waveforms Document ID: PG-TR-081120-GDD Date: 11 November 2008 Prof. Gregory D. Durgin 777 Atlantic

More information

Smart Parking Information System Exploiting Visible Light Communication

Smart Parking Information System Exploiting Visible Light Communication , pp.251-260 http://dx.doi.org/10.14257/ijsh.2014.8.1.26 Smart Parking Information System Exploiting Visible Light Communication Nammoon Kim, Changqiang Jing, Biao Zhou and Youngok Kim Department of Electronics

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

RFID (Radio Frequency Identification) Overview

RFID (Radio Frequency Identification) Overview RFID (Radio Frequency Identification) Overview António Grilo Courtesy: Greg Leeming, INTEL Sridhar Iyer, ITT Bombay Radio Frequency Identification Power from RF field Reader Antenna Reader->Tag Commands

More information

UHF RFID Reader Design

UHF RFID Reader Design IOT - Basics from the Expert EASP1 Design Case UHF RFID Reader Design Prof. Roland Küng, 2016 2004 The Big Bang of Internet of Things The Electronic Product Code (EPC) EPC provides unique* numbering scheme

More information

Department of Electronics & Telecommunication Engg. LAB MANUAL. B.Tech V Semester [ ] (Branch: ETE)

Department of Electronics & Telecommunication Engg. LAB MANUAL. B.Tech V Semester [ ] (Branch: ETE) Department of Electronics & Telecommunication Engg. LAB MANUAL SUBJECT:-DIGITAL COMMUNICATION SYSTEM [BTEC-501] B.Tech V Semester [2013-14] (Branch: ETE) KCT COLLEGE OF ENGG & TECH., FATEHGARH PUNJAB TECHNICAL

More information

RFID UHF pour l'identification et la traçabilité des objets. Jean-Marc Laheurte Professeur à l Université Paris-Est

RFID UHF pour l'identification et la traçabilité des objets. Jean-Marc Laheurte Professeur à l Université Paris-Est RFID UHF pour l'identification et la traçabilité des objets Jean-Marc Laheurte Professeur à l Université Paris-Est Séminaire TELECOM ParisTech du 10 janvier 2013 1 Agenda Generalities and Principles HF

More information

ISO/IEC INTERNATIONAL STANDARD

ISO/IEC INTERNATIONAL STANDARD INTERNATIONAL STANDARD ISO/IEC 18000-64 First edition 2012-07-15 Information technology Radio frequency identification for item management Part 64: Parameters for air interface communications at 860 MHz

More information

Modelling and Simulation of Baseband Processor for UHF RFID Reader on FPGA

Modelling and Simulation of Baseband Processor for UHF RFID Reader on FPGA Modelling and Simulation of Baseband Processor for UHF RFID Reader on FPGA I. Ismail, A.Ibrahim Abstract A baseband processor of UHF RFID reader that presented in this paper is based on International Organization

More information

A New Complexity Reduced Hardware Implementation of 16 QAM Using Software Defined Radio

A New Complexity Reduced Hardware Implementation of 16 QAM Using Software Defined Radio A New Complexity Reduced Hardware Implementation of 16 QAM Using Software Defined Radio K.Bolraja 1, V.Vinod kumar 2, V.JAYARAJ 3 1Nehru Institute of Engineering and Technology, PG scholar, Dept. of ECE

More information

Fundament Fundamen als t of Communications

Fundament Fundamen als t of Communications Fundamentals of Communications Communication System Transmitter Medium Receiver Transmitter: originates the signal Receiver: receives transmitted signal after it travels over the medium Medium: guides

More information