How to design a digital FM radio

Size: px
Start display at page:

Download "How to design a digital FM radio"

Transcription

1 How to design a digital FM radio Gautam Das and Udayan Umapathi, Cypress Semiconductor - March 13, 2012 We are witnessing an evolution in the personal computing space. Mobile devices, such as phones and tablets, are on the verge of taking over conventional computers. FM radio is one of the popular entertainment channels in developing countries. This forgotten fact, in addition to the advent of internet radio, can potentially kill the existence of FM radios. Often, OEMs consider not having FM radio on a tablet or a mobile device. However, most of the metropolitan cities still have operational FM radio with no plans to outmode it in the near future. There is a tiny plug-in device which, when attached to a phone or tablet, can bring FM radio service to mobile devices. The plug-and-play FM receiver can be built using an FM receiver chip with a microcontroller or SOC (system on chip). The microcontroller acts as a USB device when communicating with the USB host on the tablet/mobile and receives commands for operations such as channel scan, channel change, or to set output power level. This bus-powered plug-and-play FM receiver accessory can tune in to the local FM channel while consuming significantly less power than would be required by a mobile broadband radio (Internet radio). FM radio receivers FM radio receiver chips provide worldwide coverage of MHz catering to the US/EU ( MHz), Japan (76-90 MHz) and China ( MHz). Generally, FM radio receivers have the capability to tune frequencies in steps of 50, 100, or 200 khz. FM radio can also support radio data system (RDS)/radio broadcast data system (RBDS) functionality, which is fully programmable by the host. In addition to transmitted audio, RDS is used to receive text information. This could include the title of the song, name of the program being broadcast, or flash news for display. In case of emergencies, RDS can be used to transmit critical information. Band scan is a method through which the FM radio chip scans through the complete FM band for available radio channels. The radio then stores the strongest channel frequencies in its internal memory that can be read by the host microcontroller or SOC. Once the channels are stored, there are three ways of tuning to a specific channel: Preset tuning: In this method, the tuning frequency of the FM receiver is set to a certain channel as defined by the host. Search tuning: In this method, the receiver automatically searches for the next available valid channel in increasing (search up) or decreasing (search down) frequency direction. Stepped tuning: In this method, the receiver simply steps by one channel in increasing order (step up) or decreasing order (step down) of frequency.

2 Most radio receiver chips available today communicate with the host using standard protocols such as I 2 C and SPI. The radio receiver chip also demands the host s attention by generating interrupts on critical events such as: Low signal quality when the RSSI (received signal strength indicator) value drops below a threshold level Mono to stereo transition (and vice-versa) RDS synchronization is acquired RDS synchronization is lost RDS buffer is full Since this embedded system runs on devices that are battery powered, efficient power management is of paramount importance. The radio receiver chip supports various power modes that are controlled by the SOC to improve battery life. For this reason, a receiver chip supports the following power modes: Power Off: In this mode, the power supply is turned off and all internal regulators are disabled. Power Down: The power supply is on but the internal regulators are still disabled. Standby: The regulators are functional and the mode of the radio is maintained. Power Up: This is the normal operational mode in which all the regulators are enabled and the radio is fully functional. The first stage is an analog signal processing stage that converts the RF antenna signal to a low IF (intermediate frequency) digital signal. The AGC (automatic gain control) unit maintains the LNA (low-noise amplifier) in its linear operating range. A mixer is used to downconvert the received RF signal to a low IF signal. The ADC converts the signal to a digital format. The FM demodulation is done in a digital domain. The digital signal processor also handles the RDS data. FM radio accessory implementation FM radio accessory implementation The block diagram of a simple implementation of a complete FM system using a generic FM radio chip is shown in Figure 2:

3 With the advent of modern programmable SOCs, there is no need for any additional external components other than a few passive ones to implement the complete design. The SOC sends commands and receives status messages from the FM radio chip over an I 2 C port. The SOC connects to the tablet through the established USB interface. An application is used as the front-end on the tablet to access the FM radio for scanning and selecting channels. When the FM radio receives a command to lock to a particular frequency, it outputs analog audio on specific pins. The analog output from the FM radio receiver is further processed by the SOC and the digitized audio is streamed over USB to the tablet computer. The power required for the FM radio chip operation is derived from the USB bus. The current required for most FM radio chip is typically a few milliamps or even less at 1.8V. This is well within the capability of USB bus and an acceptable level for a portable device. The following resources are required in a SOC to implement a radio accessory: Amplifier ADC (Analog to Digital Converter) Communication protocol (I 2 C/SPI) USB interface Filter Block Generally, the amplitude of the output audio signal from an FM radio chip will be of the order of 100mV. An amplifier is used for the amplification of the analog audio obtained from the FM receiver prior to feeding it to the ADC in a SOC. The strength of the analog audio output is increased after passing it through a PGA (programmable gain amplifier) as shown in the block diagram. This ensures that the entire input range of the ADC is utilized and results in a faithful reproduction of the audio at the output of the FM radio chip. It is also possible to digitize the signal by using an ADC with a smaller input range. However, the smaller the amplitude of the signal, the more vulnerable it is to system noise. ADC (Analog to Digital Converter) samples the analog output of the amplifier at the rate of 44.1 khz and converts it to a 16-bit digital value. The sampling rate is chosen as 44.1 khz which is in accordance with the Nyquist principle which states that the sampling frequency must be at least two times the maximum operating frequency. Communication Protocol is a standard protocol, such as I 2 C or SPI, that is used to interface the SOC with the FM receiver. If I 2 C is used, the SOC will act as the Master and the radio receiver chip will act as the slave, with a data rate of 100/400 khz. Commands to change the channel or to scan the FM band can be issued to

4 the FM receiver chip from the I 2 C master over the I 2 C bus. The FM receiver chip is capable of decoding predefined commands to perform various tasks. If RDS is used, then the digital information received can be read from the FM receiver by the controller using the I 2 C interface. It is possible to read other status information such as the RSSI from the FM radio receiver via I 2 C and display the same on the tablet or PC. DMA (Direct Memory Access) In many microcontrollers, DMA is a powerful feature that helps in offloading data transfers between memory locations to improve performance. DMA can be used to transfer the converted digital values from the ADC to memory or directly to USB while the CPU is handling other critical tasks. USB is used to interface the host tablet with the SOC. A USB interrupt endpoint is used to receive various commands from the host, such as channel scan, channel increase, channel decrease, etc. Note that if the command size is small, the control endpoint on the USB device can be used to transfer commands. It is possible to use the control endpoint itself for sending commands. The commands can be sent as vendor-defined commands; however, on a control endpoint, a maximum of 8 bytes of data can be sent in one USB packet. The digital data at 44.1 khz obtained from the ADC is transmitted to the host using Isochronous USB transfer mode. Isochronous transfer is ideal for this transmission as it is capable of maintaining consistent delivery time due to its guaranteed latency, allocated bus bandwidth, and lack of error correction and handshaking. Note that errors are detected through the CRC field but are not corrected. An occasional data error or missed transfer will not be perceived by the human ear; it takes frequent halting to reach the point of notice. As there is no error correction, there is no halt in the data transmission even in the presence of packets containing errors. A microcontroller supports a maximum packet size of 1023 bytes for an isochronous endpoint. Improving audio quality Improving audio quality In a mobile OS, generally there is a dedicated media server or media engine that is used for playing audio. This same media engine is used to enhance or modify the characteristics of the audio if required by the user. In some mobile processors, there is dedicated DSP hardware to achieve this. Using the media engine or the DSP will consume additional power, reduce performance, and have a a potentially negative effect on the user experience. An alternate approach is to process the audio in the SOC and then stream the processed audio over USB to the host tablet. All that the tablet needs to do is play this audio on its speaker. It is possible to provide the user with finer control over the audio quality in the form of "bass" and "treble" controls using resources in the SOC. This can be achieved through the use of DFB (digital filter blocks) in devices such as the PSoC 3 manufactured by Cypress Semiconductor. The DFB block takes digital input data and outputs processed digital data. In this application, data can be streamed into the DFB using DMA, filtered as per the required audio quality, and then sent over USB for playback. The required quality of the audio is controlled from the GUI (graphical user interface). The GUI will provide an interface similar to an equalizer available in music players. The entire audio frequency range can be divided into discrete bands. Upon changing the position of the controls on the GUI, a

5 new set of coefficients will be loaded onto the DFB. These coefficients will change the gain of each band and hence change the quality of the output audio. Host Application The host runs an application that serves as a front-end for controlling the radio receiver. If the host is running the Android OS, a simple GUI can be created using standard Java and android libraries. On a windows tablet, a simple C# GUI can do the job. Control objects such as buttons are provided to select channel, increase, or decrease channel position and so on. The DirectSound driver in the Microsoft Windows operating system is used with the isochronous transfer mode of USB to stream the audio to the speakers. This feature is available on Windows 7 OS as well. The evolution of Windows 8 OS, which is specifically made for tablets, supports a GUI and audio driver without any changes. Isochronous transfer is not supported on Android tablets at present. Apple's ipad and few other ios devices have a built-in USB host and isochronous transfers can be used for audio playback. The Front-End Host Application/Windows Form application in Windows is used to generate events upon requests from the user such as: Request for channel scan Request for increment in channel Request for decrement in channel Request for RSSI from the receiver In the case of Windows, the application can be developed using C# in Visual Studio. The USB device and its endpoints can be accessed using standard libraries or using custom libraries provided by the SOC manufacturer. The library provides methods and objects to access the SOC via the USB interface. A Windows Form can be created to send commands and display status information as shown below. Control objects, such as buttons, can be added to implement various operations such as channel scan, next channel, previous channel, and volume control. In addition to this, it is also possible to record the digital audio in the form of a.wav file. Similar applications can be developed for the Android OS and Apple's ios. Modern SOCs such as PSoC 3 can be used as a one-chip implementation for plug-and-play FM radio accessories. Amplification of the analog audio, digitization, filtering, and streaming to a host and controlling the FM receiver can be handled efficiently. This bus powered device can be operated in low power modes such as standby and power down modes supported by both the FM receiver and SOC when not in use, thereby proving to be highly efficient in battery-operated hosts such as tablet

6 computers. With the era of tablet computing just at the horizon, tiny accessories like these will add great value with the help of the resources already available in the computing device. Authors' biographies Gautam Das is an Applications Engineer at Cypress Semiconductor. He received his B.E from RV College of Engineering. His interests include analog circuit design and embedded systems. Udayan Umapathi is an Applications Engineer with Cypress. He completed his Bachelor of Engineering in Electronics and Communication from RV College of Engineering, Bangalore. His expertise includes circuit design, embedded system design, and microcontrollers. This story was originally posted by EE Times.

Wireless In-Ear Audio Monitor

Wireless In-Ear Audio Monitor University of Nebraska - Lincoln Computer Engineering Senior Design Project Wireless In-Ear Audio Monitor Team Stonehenge: Erin Bartholomew Paul Bauer Nate Lowry Sabina Manandhar May 4, 2010 Contents 1

More information

Simple SDR Receiver. Looking for some hardware to learn about SDR? This project may be just what you need to explore this hot topic!

Simple SDR Receiver. Looking for some hardware to learn about SDR? This project may be just what you need to explore this hot topic! Michael Hightower, KF6SJ 13620 White Rock Station Rd, Poway, CA 92064; kf6sj@arrl.net Simple SDR Receiver Looking for some hardware to learn about SDR? This project may be just what you need to explore

More information

The front end of the receiver performs the frequency translation, channel selection and amplification of the signal.

The front end of the receiver performs the frequency translation, channel selection and amplification of the signal. Many receivers must be capable of handling a very wide range of signal powers at the input while still producing the correct output. This must be done in the presence of noise and interference which occasionally

More information

MP3 Player CSEE 4840 SPRING 2010 PROJECT DESIGN. zl2211@columbia.edu. ml3088@columbia.edu

MP3 Player CSEE 4840 SPRING 2010 PROJECT DESIGN. zl2211@columbia.edu. ml3088@columbia.edu MP3 Player CSEE 4840 SPRING 2010 PROJECT DESIGN Zheng Lai Zhao Liu Meng Li Quan Yuan zl2215@columbia.edu zl2211@columbia.edu ml3088@columbia.edu qy2123@columbia.edu I. Overview Architecture The purpose

More information

Application Note Receiving HF Signals with a USRP Device Ettus Research

Application Note Receiving HF Signals with a USRP Device Ettus Research Application Note Receiving HF Signals with a USRP Device Ettus Research Introduction The electromagnetic (EM) spectrum between 3 and 30 MHz is commonly referred to as the HF band. Due to the propagation

More information

Apple iphone/ipod Touch - ieffect Mobile Guitar Effect Accessory & Application

Apple iphone/ipod Touch - ieffect Mobile Guitar Effect Accessory & Application Apple iphone/ipod Touch - ieffect Mobile Guitar Effect Accessory & Application Preliminary Design Report with Diagrams EEL4924 - Electrical Engineering Design 2 3 June 2009 Members: Ryan Nuzzaci & Shuji

More information

ELAD FDM-SW1 USER MANUAL. Ver. 1.0

ELAD FDM-SW1 USER MANUAL. Ver. 1.0 ELAD FDM-SW1 USER MANUAL Ver. 1.0 Index 1 FDM-SW1 Overview... 4 2 Graphical User Interface (GUI)... 5 2.1 Display Window... 6 2.1.1 Filter Spectrum... 6 2.1.2 Click Options... 7 2.1.3 Graphics Settings...

More information

VMR6512 Hi-Fi Audio FM Transmitter Module

VMR6512 Hi-Fi Audio FM Transmitter Module General Description VMR6512 is a highly integrated FM audio signal transmitter module. It integrates advanced digital signal processor (DSP), frequency synthesizer RF power amplifier and matching network.

More information

Modification Details.

Modification Details. Front end receiver modification for DRM: AKD Target Communications receiver. Model HF3. Summary. The receiver was modified and capable of receiving DRM, but performance was limited by the phase noise from

More information

WATCHWITZ BLAZON WATCHWITZ- BLAZON

WATCHWITZ BLAZON WATCHWITZ- BLAZON WATCHWITZ BLAZON WATCHWITZ- BLAZON WATCHWITZ BLAZON *images for illustration purpose only WATCHWITZ BLAZON 101 > Live Broadcasting Solution WATCHWITZ BLAZON 102 > Live Broadcasting Solution with Professional

More information

Mobile Operating Systems Lesson 05 Windows CE Part 1

Mobile Operating Systems Lesson 05 Windows CE Part 1 Mobile Operating Systems Lesson 05 Windows CE Part 1 Oxford University Press 2007. All rights reserved. 1 Windows CE A 32 bit OS from Microsoft Customized for each specific hardware and processor in order

More information

Computer and Set of Robots

Computer and Set of Robots Lesson 11:DESIGN PROCESS EXAMPLES Mobile-Phone, Mobile- Computer and Set of Robots 1 Mobile Phone 2 Mobile phone SoC (System-on-Chip) Hardware units Microcontroller or ASIP (Application Specific Instruction

More information

'Possibilities and Limitations in Software Defined Radio Design.

'Possibilities and Limitations in Software Defined Radio Design. 'Possibilities and Limitations in Software Defined Radio Design. or Die Eierlegende Wollmilchsau Peter E. Chadwick Chairman, ETSI ERM_TG30, co-ordinated by ETSI ERM_RM Software Defined Radio or the answer

More information

ELEMENTS OF CABLE TELEVISION

ELEMENTS OF CABLE TELEVISION 1 ELEMENTS OF CABLE TELEVISION Introduction Cable television, from its inception, developed in western countries into two separate systems called Master Antenna Television (MATV) and Community Cable Television

More information

SF16-FMD. 16-Bit 3-D Sound Board with FM Radio. User Manual

SF16-FMD. 16-Bit 3-D Sound Board with FM Radio. User Manual SF16-FMD 16-Bit 3-D Sound Board with FM Radio User Manual SF16-FMD 16-Bit 3-D Sound Board with FM Radio User Manual All rights reserved. No part of this publication may be produced, transmitted, transcribed,

More information

Tiny Audio C3. English TINY AUDIO C3. Please read carefully before using this product

Tiny Audio C3. English TINY AUDIO C3. Please read carefully before using this product English TINY AUDIO C3 Please read carefully before using this product 1 Safety Instructions: 1. Do not use this radio near water. 2. Clean with dry cloth. 3. Do not block any ventilation openings. 4. Do

More information

RFSPACE CLOUD-IQ #CONNECTED SOFTWARE DEFINED RADIO

RFSPACE CLOUD-IQ #CONNECTED SOFTWARE DEFINED RADIO CLOUD-IQ #CONNECTED SOFTWARE DEFINED RADIO 1 - SPECIFICATIONS Cloud-IQ INTRODUCTION The Cloud-IQ is a high performance, direct sampling software radio with an ethernet interface. It offers outstanding

More information

Locus digital DVB-T STB

Locus digital DVB-T STB Customer The company Locus is a leader in the antenna and terrestrial TV equipment market. Objective To develop a digital set-top box for the receipt and decoding of terrestrial digital broadcasting signals

More information

Department of Electrical and Computer Engineering Ben-Gurion University of the Negev. LAB 1 - Introduction to USRP

Department of Electrical and Computer Engineering Ben-Gurion University of the Negev. LAB 1 - Introduction to USRP Department of Electrical and Computer Engineering Ben-Gurion University of the Negev LAB 1 - Introduction to USRP - 1-1 Introduction In this lab you will use software reconfigurable RF hardware from National

More information

US-Key New generation of High performances Ultrasonic device

US-Key New generation of High performances Ultrasonic device US-Key New generation of High performances Ultrasonic device US-Key connected to a laptop computer US-Key Ultrasound device single channel Features USB2 High Speed connection Ultralow noise preamplifier

More information

Introduction to Receivers

Introduction to Receivers Introduction to Receivers Purpose: translate RF signals to baseband Shift frequency Amplify Filter Demodulate Why is this a challenge? Interference (selectivity, images and distortion) Large dynamic range

More information

Chord Limited. Mojo Dac Headphone Amplifier OPERATING INSTRUCTIONS

Chord Limited. Mojo Dac Headphone Amplifier OPERATING INSTRUCTIONS Chord Limited Mojo Dac Headphone Amplifier OPERATING INSTRUCTIONS -!1 - Cleaning and care instructions: Mojo requires no special care other than common sense. Spray window cleaner (clear type) may be used

More information

Welcome to the tutorial for the MPLAB Starter Kit for dspic DSCs

Welcome to the tutorial for the MPLAB Starter Kit for dspic DSCs Welcome to the tutorial for the MPLAB Starter Kit for dspic DSCs Welcome to this tutorial on Microchip s MPLAB Starter Kit for dspic Digital Signal Controllers, or DSCs. The starter kit is an all-in-one

More information

Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com

Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-83 Sales: (888) 512-124 Tech Support: (888) 997-8267

More information

FUNcube Dongle Pro+ User Manual (V4)

FUNcube Dongle Pro+ User Manual (V4) FUNcube Dongle Pro+ User Manual (V4) AMSAT-UK FCD2 regulatory statements FCC statement WARNING: MODIFICATION OF THIS DEVICE TO RECEIVE CELLULAR RADIOTELEPHONE SERVICE SIGNALS IS PROHIBITED UNDER FCC RULES

More information

Improved user experiences are possible with enhanced FM radio data system (RDS) reception

Improved user experiences are possible with enhanced FM radio data system (RDS) reception Improved user experiences are possible with enhanced FM radio data system (RDS) reception Aravind Ganesan, Senior Systems Engineer, and Jaiganesh Balakrishnan, Senior Member of Technical Staff, Wireless

More information

Bluetooth Stereo Network

Bluetooth Stereo Network ECE 445 Fall 2012 Senior Design Project Proposal Bluetooth Stereo Network Team 7 Jeff Wheeler Rishi Ratan Jerry Sun Prof. Andrew Carl Singer TA: Justine Fortier Table of Contents 1.0 Introduction... 3

More information

Full-Band Capture Cable Digital Tuning

Full-Band Capture Cable Digital Tuning White Paper Full-Band Capture Cable Digital Tuning Cable operators are demanding devices that support an increasing number of simultaneous channels, which translates to multiple cable tuners and demodulators

More information

AM TRANSMITTERS & RECEIVERS

AM TRANSMITTERS & RECEIVERS Reading 30 Ron Bertrand VK2DQ http://www.radioelectronicschool.com AM TRANSMITTERS & RECEIVERS Revision: our definition of amplitude modulation. Amplitude modulation is when the modulating audio is combined

More information

THE BASICS OF PLL FREQUENCY SYNTHESIS

THE BASICS OF PLL FREQUENCY SYNTHESIS Supplementary Reading for 27 - Oscillators Ron Bertrand VK2DQ http://www.radioelectronicschool.com THE BASICS OF PLL FREQUENCY SYNTHESIS The phase locked loop (PLL) method of frequency synthesis is now

More information

Professional 24-bit USB Audio Interface. User s Guide

Professional 24-bit USB Audio Interface. User s Guide Professional 24-bit USB Audio Interface User s Guide - Copyright 2016 Revision 1, January 2016 www.esi-audio.com INDEX 1. Introduction... 4 1.1 Features... 4 2. Installation... 5 2.1 System Recommendation...

More information

How To Sell A Talan

How To Sell A Talan The TALAN represents state-of-the-art capability to rapidly and reliably detect and locate illicit tampering and security vulnerabilities on both digital and analog telephone systems. Marketing Characteristics

More information

www.fmtalkinghouse.com

www.fmtalkinghouse.com www.fmtalkinghouse.com 24x7 FM Announcement System (Talking Sign) 2009 FM TALKING HOUSE All rights reserved Talking Sign 24x7 FM Announcement System Description: The 24x7 FM Announcement System or Talking

More information

DAB1001. Wireless Digital Radio Interface. Installation & User Guide

DAB1001. Wireless Digital Radio Interface. Installation & User Guide DAB1001 Wireless Digital Radio Interface Installation & User Guide Contents Contents... 2 Introduction... 3 Contents of Package... 4 Installation... 5 Product Overview... 5 Installation Procedure... 5

More information

RF Communication System. EE 172 Systems Group Presentation

RF Communication System. EE 172 Systems Group Presentation RF Communication System EE 172 Systems Group Presentation RF System Outline Transmitter Components Receiver Components Noise Figure Link Budget Test Equipment System Success Design Remedy Transmitter Components

More information

Lesson 10:DESIGN PROCESS EXAMPLES Automatic Chocolate vending machine, smart card and digital camera

Lesson 10:DESIGN PROCESS EXAMPLES Automatic Chocolate vending machine, smart card and digital camera Lesson 10:DESIGN PROCESS EXAMPLES Automatic Chocolate vending machine, smart card and digital camera 1 Automatic Chocolate Vending Machine (ACVM) 2 Diagrammatic representation of ACVM Keypad for user Interface

More information

Designing Wheel-Tuned, Digital-Display Radios with Next-Generation Radio ICs

Designing Wheel-Tuned, Digital-Display Radios with Next-Generation Radio ICs Designing Wheel-Tuned, Digital-Display Radios with Next-Generation Radio ICs Radio technology has been around for more than a century, and traditional wheel-tuned radio products have been used for decades

More information

SNC-VL10P Video Network Camera

SNC-VL10P Video Network Camera SNC-VL10P Video Network Camera CHANGING THE WAY BUSINESS 2AM. WATCHING HIS NEW PRODUCTION LINE. 10,000 MILES AWAY. COMMUNICATES www.sonybiz.net/netstation CORPORATE COMMUNICATIONS SURVEILLANCE VIDEOCONFERENCING

More information

Tablets in Data Acquisition

Tablets in Data Acquisition Tablets in Data Acquisition Introduction In the drive to smaller and smaller data acquisition systems, tablet computers bring a great appeal. Desktop personal computers gave engineers the power to create

More information

The diagram below illustrates the steps from stored music to audio device; key elements of the audio chain are discussed later in this guide.

The diagram below illustrates the steps from stored music to audio device; key elements of the audio chain are discussed later in this guide. USB Audio Guide We realise that most audiophiles are not computer experts and will not have access to the advanced and expensive test equipment we use during product development. So, with this guide, we

More information

Ideal CD player and FM tuner for use with other 301 Reference Series components also supports RDS and USB memory playback

Ideal CD player and FM tuner for use with other 301 Reference Series components also supports RDS and USB memory playback Reference301 Series PD-301 CD Player /FM Tuner Ideal CD player and FM tuner for use with other 301 Reference Series components also supports RDS and USB memory playback Main functions High-precision slot-in

More information

Note monitors controlled by analog signals CRT monitors are controlled by analog voltage. i. e. the level of analog signal delivered through the

Note monitors controlled by analog signals CRT monitors are controlled by analog voltage. i. e. the level of analog signal delivered through the DVI Interface The outline: The reasons for digital interface of a monitor the transfer from VGA to DVI. DVI v. analog interface. The principles of LCD control through DVI interface. The link between DVI

More information

I2C PRESSURE MONITORING THROUGH USB PROTOCOL.

I2C PRESSURE MONITORING THROUGH USB PROTOCOL. I2C PRESSURE MONITORING THROUGH USB PROTOCOL. Product Details: To eradicate human error while taking readings such as upper precision or lower precision Embedded with JAVA Application: Technology Used:

More information

BTX180 Wireless Bluetooth Speaker

BTX180 Wireless Bluetooth Speaker BTX180 Wireless Bluetooth Speaker User Manual 2012 Kinivo LLC. All rights reserved. Kinivo is a trademark of Kinivo LLC. Bluetooth word mark and the Bluetooth logo are registered trademarks of Bluetooth

More information

Figure 1.Block diagram of inventory management system using Proximity sensors.

Figure 1.Block diagram of inventory management system using Proximity sensors. Volume 1, Special Issue, March 2015 Impact Factor: 1036, Science Central Value: 2654 Inventory Management System Using Proximity ensors 1)Jyoti KMuluk 2)Pallavi H Shinde3) Shashank VShinde 4)Prof VRYadav

More information

Chapter 13. PIC Family Microcontroller

Chapter 13. PIC Family Microcontroller Chapter 13 PIC Family Microcontroller Lesson 01 PIC Characteristics and Examples PIC microcontroller characteristics Power-on reset Brown out reset Simplified instruction set High speed execution Up to

More information

MICROPROCESSOR AND MICROCOMPUTER BASICS

MICROPROCESSOR AND MICROCOMPUTER BASICS Introduction MICROPROCESSOR AND MICROCOMPUTER BASICS At present there are many types and sizes of computers available. These computers are designed and constructed based on digital and Integrated Circuit

More information

Maximizing Range and Battery Life in Low-Cost Wireless Networks

Maximizing Range and Battery Life in Low-Cost Wireless Networks Maximizing Range and Battery Life in Low-Cost Wireless Networks The proliferation of cost-effective wireless technology has led to the rise of entirely new types of networks across a wide range of applications

More information

Propagation Channel Emulator ECP_V3

Propagation Channel Emulator ECP_V3 Navigation simulators Propagation Channel Emulator ECP_V3 1 Product Description The ECP (Propagation Channel Emulator V3) synthesizes the principal phenomena of propagation occurring on RF signal links

More information

REMOTE KEYLESS ENTRY SYSTEM RECEIVER DESIGN

REMOTE KEYLESS ENTRY SYSTEM RECEIVER DESIGN INTRODUCTION: REMOTE KEYLESS ENTRY SYSTEM RECEIVER DESIGN Remote keyless entry (RKE) has captivated automobile buyers, as evidenced by the popularity of RKE on new automobiles and as an aftermarket item.

More information

POCKET SCOPE 2. The idea 2. Design criteria 3

POCKET SCOPE 2. The idea 2. Design criteria 3 POCKET SCOPE 2 The idea 2 Design criteria 3 Microcontroller requirements 3 The microcontroller must have speed. 3 The microcontroller must have RAM. 3 The microcontroller must have secure Flash. 3 The

More information

Spectrum analyzer with USRP, GNU Radio and MATLAB

Spectrum analyzer with USRP, GNU Radio and MATLAB Spectrum analyzer with USRP, GNU Radio and MATLAB António José Costa, João Lima, Lúcia Antunes, Nuno Borges de Carvalho {antoniocosta, jflima, a30423, nbcarvalho}@ua.pt January 23, 2009 Abstract In this

More information

GETTING STARTED WITH ANDROID DEVELOPMENT FOR EMBEDDED SYSTEMS

GETTING STARTED WITH ANDROID DEVELOPMENT FOR EMBEDDED SYSTEMS Embedded Systems White Paper GETTING STARTED WITH ANDROID DEVELOPMENT FOR EMBEDDED SYSTEMS September 2009 ABSTRACT Android is an open source platform built by Google that includes an operating system,

More information

Allows you to play & control music and video content stored on your iphone, and charge it while it s docked

Allows you to play & control music and video content stored on your iphone, and charge it while it s docked CMT-MX700NI Sony CMT-MX700Ni Music System and Wi-Fi Internet Radio Get everything you need to enjoy your music with this compact, user-friendly micro shelf system with built-in Wi-Fi. Stream internet music,

More information

Design of a Wireless Medical Monitoring System * Chavabathina Lavanya 1 G.Manikumar 2

Design of a Wireless Medical Monitoring System * Chavabathina Lavanya 1 G.Manikumar 2 Design of a Wireless Medical Monitoring System * Chavabathina Lavanya 1 G.Manikumar 2 1 PG Student (M. Tech), Dept. of ECE, Chirala Engineering College, Chirala., A.P, India. 2 Assistant Professor, Dept.

More information

Introducing the Si473x Multiband Receiver Family

Introducing the Si473x Multiband Receiver Family Introducing the Si473x Multiband Receiver Family Silicon Laboratories Broadcast Portfolio AM/FM Radio Receivers and FM Transmitters High-performance broadcast radio components SiRX Satellite Receivers

More information

Open Architecture Design for GPS Applications Yves Théroux, BAE Systems Canada

Open Architecture Design for GPS Applications Yves Théroux, BAE Systems Canada Open Architecture Design for GPS Applications Yves Théroux, BAE Systems Canada BIOGRAPHY Yves Théroux, a Project Engineer with BAE Systems Canada (BSC) has eight years of experience in the design, qualification,

More information

Web Streamed SDR s in Service at GB2RHQ Hack Green Bunker

Web Streamed SDR s in Service at GB2RHQ Hack Green Bunker Web Streamed SDR s in Service at GB2RHQ Hack Green Bunker Gateway to the Net. We are fortunate to have a very fast internet service into Hack Green via a 5Ghz microwave link. The service provides a bandwidth

More information

Digital Guitar Effects Pedal

Digital Guitar Effects Pedal Digital Guitar Effects Pedal 01001000100000110000001000001100 010010001000 Jonathan Fong John Shefchik Advisor: Dr. Brian Nutter SPRP499 Texas Tech University jonathan.fong@ttu.edu Presentation Outline

More information

Microtronics technologies Mobile: 99707 90092

Microtronics technologies Mobile: 99707 90092 For more Project details visit: http://www.projectsof8051.com/rfid-based-attendance-management-system/ Code Project Title 1500 RFid Based Attendance System Synopsis for RFid Based Attendance System 1.

More information

Bluetooth FM transmitter User Manual

Bluetooth FM transmitter User Manual Bluetooth FM transmitter User Manual Thank you in earnest that you choose and buy Bluetooth FM transmitter from us! Please browse all details of this manual before using it to get best playing effect.

More information

Kanguru Micro MP3 PRO USB2.0 User s Manual

Kanguru Micro MP3 PRO USB2.0 User s Manual Kanguru Micro MP3 PRO USB2.0 User s Manual MP3/WMA Player + Digital Voice Recorder FM Tuner + USB Flash Drive Copyright 2005, All Rights Reserved. This manual applies to 1.1 or later versions of the Kanguru

More information

IsumaTV. Media Player Setup Manual COOP Cable System. Media Player

IsumaTV. Media Player Setup Manual COOP Cable System. Media Player IsumaTV Media Player Setup Manual COOP Cable System Visual Setup Front: Router Scan Converter Media Player Video Modulator Equipment: Media Player: Router: Scan Converter: Video Modulator: This computer

More information

Lean and Easy Ways to Adopt MOST Technology

Lean and Easy Ways to Adopt MOST Technology Lean and Easy Ways to Adopt MOST Technology Microchip Puts the Synergistic Power of Evolution Right Into Your Hands Harald Kohler, Senior Manager, Business Development & Strategic Marketing Microchip Technology

More information

Sample Project List. Software Reverse Engineering

Sample Project List. Software Reverse Engineering Sample Project List Software Reverse Engineering Automotive Computing Electronic power steering Embedded flash memory Inkjet printer software Laptop computers Laptop computers PC application software Software

More information

Position of the RDS signal in the modulation spectrum... 3 RDS groups... 3 Group Format... 4 Error Correction and Synchronization...

Position of the RDS signal in the modulation spectrum... 3 RDS groups... 3 Group Format... 4 Error Correction and Synchronization... RDS Basics The RDS service (Radio Data System)... 2 RDS features... 2 Alternate Frequency (AF/EON)... 2 Traffic Announcement / Traffic Program Indication (TA/TP)... 2 TMC - Traffic Information via Traffic

More information

Atmel Norway 2005. XMEGA Introduction

Atmel Norway 2005. XMEGA Introduction Atmel Norway 005 XMEGA Introduction XMEGA XMEGA targets Leadership on Peripheral Performance Leadership in Low Power Consumption Extending AVR market reach XMEGA AVR family 44-100 pin packages 16K 51K

More information

DAC Digital To Analog Converter

DAC Digital To Analog Converter DAC Digital To Analog Converter DAC Digital To Analog Converter Highlights XMC4000 provides two digital to analog converters. Each can output one analog value. Additional multiple analog waves can be generated

More information

3 Software Defined Radio Technologies

3 Software Defined Radio Technologies 3 Software Defined Radio Technologies 3-1 Software Defined Radio for Next Generation Seamless Mobile Communication Systems In this paper, the configuration of the newly developed small-size software defined

More information

Smarthome SELECT Bluetooth Wireless Stereo Audio Receiver and Amplifier INTRODUCTION

Smarthome SELECT Bluetooth Wireless Stereo Audio Receiver and Amplifier INTRODUCTION Smarthome SELECT Bluetooth Wireless Stereo Audio Receiver and Amplifier INTRODUCTION The Smarthome SELECT Bluetooth Wireless Stereo Audio Receiver and Amplifier is a multi-functional compact device. It

More information

DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING Question Bank Subject Name: EC6504 - Microprocessor & Microcontroller Year/Sem : II/IV

DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING Question Bank Subject Name: EC6504 - Microprocessor & Microcontroller Year/Sem : II/IV DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING Question Bank Subject Name: EC6504 - Microprocessor & Microcontroller Year/Sem : II/IV UNIT I THE 8086 MICROPROCESSOR 1. What is the purpose of segment registers

More information

Signal Processing in So.ware and Electric Field Sensing

Signal Processing in So.ware and Electric Field Sensing Signal Processing in So.ware and Electric Field Sensing CSE 466: So.ware for Embedded Systems Winter 2009 B. Mayton University of Washington CSE & Intel Research SeaMle CSE

More information

White Paper Streaming Multichannel Uncompressed Video in the Broadcast Environment

White Paper Streaming Multichannel Uncompressed Video in the Broadcast Environment White Paper Multichannel Uncompressed in the Broadcast Environment Designing video equipment for streaming multiple uncompressed video signals is a new challenge, especially with the demand for high-definition

More information

Product Information S N O. Portable VIP protection CCTV & Alarm System 2

Product Information S N O. Portable VIP protection CCTV & Alarm System 2 Product Information S N O Portable VIP protection CCTV & Alarm System 2 G O V E R N M E N T A L S E C U R I T Y S O L U T I VIP KIT Rapid Deployment VIP Protection Kit The VIP KIT has been designed to

More information

Bluetooth Solutions for Apple ios Devices 2/14/2013 1

Bluetooth Solutions for Apple ios Devices 2/14/2013 1 Bluetooth Solutions for Apple ios Devices 2/14/2013 1 Topics Introduction Bluegiga s Solution for ios Devices Compatible Products Summary 2/14/2013 2 Introduction Bluetooth BR/EDR compatible ios devices

More information

STEREO BLUETOOTH WIRELESS HEADPHONES

STEREO BLUETOOTH WIRELESS HEADPHONES STEREO BLUETOOTH WIRELESS HEADPHONES model: AF32 USER MANUAL part of the series PACKAGE CONTENTS Runaway AF32 Stereo Bluetooth Wireless Headphones Charging cable (USB 3.5mm) Stereo audio cable (3.5mm 3.5mm)

More information

User Guide FFFA001106. www.focusrite.com

User Guide FFFA001106. www.focusrite.com User Guide FFFA001106 www.focusrite.com TABLE OF CONTENTS OVERVIEW.... 3 Introduction...3 Features.................................................................... 3 Box Contents...3 System Requirements....4

More information

The I2C Bus. NXP Semiconductors: UM10204 I2C-bus specification and user manual. 14.10.2010 HAW - Arduino 1

The I2C Bus. NXP Semiconductors: UM10204 I2C-bus specification and user manual. 14.10.2010 HAW - Arduino 1 The I2C Bus Introduction The I2C-bus is a de facto world standard that is now implemented in over 1000 different ICs manufactured by more than 50 companies. Additionally, the versatile I2C-bus is used

More information

AM / FM Tuner + RDS. Model: TU-101. www.pulse-audio.co.uk

AM / FM Tuner + RDS. Model: TU-101. www.pulse-audio.co.uk AM / FM Tuner + RDS Model: TU-101 www.pulse-audio.co.uk 1 Safety Information The lightning bolt within a triangle is intended to alert the user to the presence of dangerous voltage levels within the product

More information

Berkeley Audio Design Alpha USB

Berkeley Audio Design Alpha USB QUICK USER GUIDE v1.2.2 Berkeley Audio Design Alpha USB The Alpha USB is an asynchronous High Speed USB to digital audio interface designed to provide the highest possible audio quality from computer audio

More information

Current and Ultrasonic Testing System

Current and Ultrasonic Testing System 17th World Conference on Nondestructive Testing, 25-28 Oct 2008, Shanghai, China ARM9-Based High Speed Multi-channels Eddy Current and Ultrasonic Testing System Zeyi ZHANG 1, Lei ZHAO 2 ( 1 Eddysuns (Xiamen)

More information

Information Paper. FDMA and TDMA Narrowband Digital Systems

Information Paper. FDMA and TDMA Narrowband Digital Systems Information Paper FDMA and TDMA Narrowband Digital Systems Disclaimer Icom Inc. intends the information presented here to be for clarification and/or information purposes only, and care has been taken

More information

Multimedia Systems Hardware & Software THETOPPERSWAY.COM

Multimedia Systems Hardware & Software THETOPPERSWAY.COM Multimedia Systems Hardware & Software THETOPPERSWAY.COM Table of Content 1. Categories of multimedia systems 2. Categories of multimedia devices 3. Evolution of multimedia PC 4. Authoring tools 5. Classification

More information

US-SPI New generation of High performances Ultrasonic device

US-SPI New generation of High performances Ultrasonic device US-SPI New generation of High performances Ultrasonic device Lecoeur Electronique - 19, Rue de Courtenay - 45220 CHUELLES - Tel. : +33 ( 0)2 38 94 28 30 - Fax : +33 (0)2 38 94 29 67 US-SPI Ultrasound device

More information

SDR Architecture. Introduction. Figure 1.1 SDR Forum High Level Functional Model. Contributed by Lee Pucker, Spectrum Signal Processing

SDR Architecture. Introduction. Figure 1.1 SDR Forum High Level Functional Model. Contributed by Lee Pucker, Spectrum Signal Processing SDR Architecture Contributed by Lee Pucker, Spectrum Signal Processing Introduction Software defined radio (SDR) is an enabling technology, applicable across a wide range of areas within the wireless industry,

More information

AM/FM/CD/MP3 Receiver with USB/SD & A u xiliary Input 3 Built-in Microphone inputs for P A Announcements. Installation/Operation Manual

AM/FM/CD/MP3 Receiver with USB/SD & A u xiliary Input 3 Built-in Microphone inputs for P A Announcements. Installation/Operation Manual AM/FM/CD/MP3 Receiver with USB/SD & A u xiliary Input 3 Built-in Microphone inputs for P A Announcements Installation/Operation Manual 50W x 4 CD-2000 CONTROLS AND INDICATORS (1) Power Button (2) Volume/Select

More information

Universal Form-factor. Wi Fi Troubleshooting Made Easy

Universal Form-factor. Wi Fi Troubleshooting Made Easy AirMedic USB AirMedic USB is a powerful, easy-touse and affordable spectrum analysis tool that brings Wi-Fi troubleshooting to entry-level users. Built upon AirMagnet expertise in Wi-Fi troubleshooting,

More information

Software Defined Radio

Software Defined Radio Software Defined Radio GNU Radio and the USRP Overview What is Software Defined Radio? Advantages of Software Defined Radio Traditional versus SDR Receivers SDR and the USRP Using GNU Radio Introduction

More information

Rayson Technology Co., Ltd.

Rayson Technology Co., Ltd. Rayson Bluetooth Module BC05-MM Class2 Stereo Module BTM-730 Features The module is a Max.4dBm( Class2 ) module. Fully Qualified Bluetooth v2.0+edr system. Integrated Switched-Mode Regulator. Integrated

More information

Message from the Development Team. Contents. Message from the Development Team..2. Panel Controls and Terminals...3. Using the UR22mkII...

Message from the Development Team. Contents. Message from the Development Team..2. Panel Controls and Terminals...3. Using the UR22mkII... EN Contents Contents Message from the Development Team..2 Panel Controls and Terminals...3 Front Panel...3 Rear Panel...5 Software...7 Using the UR22mkII...10 Connections...10 Configuring Audio Driver

More information

USB I/O CONTROL BOX 8 relays, 8 digital I/O lines and 8 HV inputs

USB I/O CONTROL BOX 8 relays, 8 digital I/O lines and 8 HV inputs USB I/O CONTROL BOX 8 relays, 8 digital I/O lines and 8 HV inputs The Big Deal USB HID device compatible with 32/64 Bit operating systems 8 TTL/LVTTL digital I/O channels, 8 High Voltage digital inputs

More information

Design, implementation and characterization of a radio link in ISM band at 2.4Ghz

Design, implementation and characterization of a radio link in ISM band at 2.4Ghz Design, implementation and characterization of a radio link in ISM band at 2.4Ghz By Juan Santaella Hernández Supervisor: Francisco Jiménez Molinos Design, implementation and characterization of a radio

More information

Broadband Networks. Prof. Dr. Abhay Karandikar. Electrical Engineering Department. Indian Institute of Technology, Bombay. Lecture - 29.

Broadband Networks. Prof. Dr. Abhay Karandikar. Electrical Engineering Department. Indian Institute of Technology, Bombay. Lecture - 29. Broadband Networks Prof. Dr. Abhay Karandikar Electrical Engineering Department Indian Institute of Technology, Bombay Lecture - 29 Voice over IP So, today we will discuss about voice over IP and internet

More information

Design of an Insulin Pump. Purpose of an Insulin Pump:

Design of an Insulin Pump. Purpose of an Insulin Pump: Design of an Insulin Pump Purpose of an Insulin Pump: Insulin is a hormone central to regulating carbohydrate and fat metabolism in the body. It is secreted regularly within the body and aids in converting

More information

Eureka Technology. Understanding SD, SDIO and MMC Interface. by Eureka Technology Inc. May 26th, 2011. Copyright (C) All Rights Reserved

Eureka Technology. Understanding SD, SDIO and MMC Interface. by Eureka Technology Inc. May 26th, 2011. Copyright (C) All Rights Reserved Understanding SD, SDIO and MMC Interface by Eureka Technology Inc. May 26th, 2011 Copyright (C) All Rights Reserved Copyright by Eureka Technology Inc. All Rights Reserved Introduction This white paper

More information

Secure My-d TM and Mifare TM RFID reader system by using a security access module Erich Englbrecht (info@eonline.de) V0.1draft

Secure My-d TM and Mifare TM RFID reader system by using a security access module Erich Englbrecht (info@eonline.de) V0.1draft Application Report Secure My-d TM and Mifare TM RFID reader system by using a security access module Erich Englbrecht (info@eonline.de) V0.1draft Embedded RF ABSTRACT This application report describes

More information

HT 30/35CD transmitters

HT 30/35CD transmitters HT 30/35CD Transmitter HARRIS, the world leader in broadcast technology, proudly presents HT CD Series FM transmitters. Featuring a rugged, world-proven design, HT CD transmitters are the world s first

More information

ontroller LSI with Built-in High- Performance Graphic Functions for Automotive Applications

ontroller LSI with Built-in High- Performance Graphic Functions for Automotive Applications C ontroller LSI with Built-in High- Performance Graphic Functions for Automotive Applications 1-chip solution for color display, video input and meter control with built-in highperformance CPU core FR81S

More information

Technical Description. Multifunctional Desk-Top Call Station Digital Version 8, 16 Keys L.No. 1 760 4, 1 761 5

Technical Description. Multifunctional Desk-Top Call Station Digital Version 8, 16 Keys L.No. 1 760 4, 1 761 5 Technical Description Multifunctional Desk-Top Call Station Digital Version 8, 16 Keys L.No. 1 760 4, 1 761 5 Contents 1. General remarks 2. Design 3. Block diagram 4. Function 4.1 Controller system with

More information