Longwave AM radio receiver

Size: px
Start display at page:

Download "Longwave AM radio receiver"

Transcription

1 ...using LM3S811 microcontroller - abstract DesignStellaris 2006 entry 1. Short description This project is a digital direct conversion receiver for long waves. It proves that a working radio receiver can be built using only a few discrete components, computer speakers with amplifier and EK-LM3S811 evaluation board. Its performance might be worse than of a well designed analog receiver but this device uses no inductors at all in the signal path and there are no tuning capacitors. Instead, tuning and control is done by a USB serial connection with a computer running any terminal emulating software. Although designers of the LM3S811 for sure did not expect that it will be used as a radio receiver, its speed and other features are sufficient to build one. Modern microcontrollers are truly multi-purpose! 2. Principle of operation The idea of digital receiver is not new. It has been around for a few years now. The main idea of it is to perform all the tuning and demodulation by mathematical operations performed in digital domain. Using this technology, in general, it is possible to build a receiver that equally well receives analog AM, SSB and FM signals, digital OOK, FSK and other, using the same hardware. The only changes are done in software. The analog part of this circuit is limited to signal conditioning and filtering. Rest of the processing is done by a digital circuit after converting the signal by analog to digital converter (ADC). In presented here the idea of digital radio is used to receive AM signals at frequencies below 250 khz. The block diagram of the device is shown below on Fig. 1. tuning and control ADC PC running terminal software mixer frequency generator amplifier bias 1st RC filter EK-LM3S811 R-2R DAC 2nd RC filter loudspeaker Fig. 1. Block diagram of longwave radio receiver The device works as follows: signal from antenna (a few meters of wire) is amplified in a two transistor amplifier. After amplification the signal is biased to approximately half of the analog to digital converter input range and filtered by a very simple RC lowpass filter. It also acts as an antialiasing filter for analog to digital converter. Next stage is analog to digital converter itself, working 1

2 at approximately samples per second. After converting the signal to digital domain the samples are fed to the digital mixer. This mixer multiplies consecutive samples by sine wave samples stored in microcontroller's memory. Appropriate samples of sine wave are supplied by frequency generator that uses direct digital synthesis technique to generate signal of desired frequency. After multiplying the samples are converted back to analog domain by simple R-2R resistor ladder. Sound quality is improved by filtering the output by another simple RC filter. Last stage is amplification of the signal in an amplifier of a computer loudspeaker. 3. Reception The reception of broadcast stations with this radio differs a little from reception with an analog tuner. First of all, due to a fixed tuning step, it might be impossible to tune exactly to the station frequency this would result in fadeouts of sound (when frequency of local generator is almost the same as the carrier frequency) or metallic sound (when frequency of local generator differs from the carrier frequency by a few hertz). Next problem is weak filtering of the input signal. As a result aliasing may occur. Additionally, weak filtering on the input means that quite significant amount of noise is amplified. Next difference is the way the radio is tuned. In digital radio the received frequency can be set more accurately and it is stabilized by quartz oscillator, therefore it does not change significantly with time, as it sometimes happens with analog receivers. The radio is controlled via USB connection. Terminal software is configured to use virtual COM port created by the driver supplied with the board. Parameters of connection are: bps, 8 bits, 1 stop bit, no parity bits. All commands need to be followed by Enter key. Control commands are the following: set Increase value: f[new Increase value] example: f set output scaling value: o[scaling value] (can be regarded as volume control) example: o8 Increase value up by 1: = Increase value down by 1: Increase value up by 100: ] Increase value down by 100: [ get current Increase value: g Due to problems with acquiring exact ADC frequency there is no command to set the receiver to the desired frequency directly. Instead tuning of Increase value has to be done. 4. Photograph of the test setup Photograph of the test setup of receiver is shown on Fig. 3. The loudspeaker used during tests is shown on Fig. 4. Fig. 3. Photograph of the hardware 2

3 Fig. 4. Loudspeaker 5. Code Two fragments of the code (ADC interrupt routine and unsigned long send via UART routine) are presented on the following listings void ADCIntHandler(void) register long Data; #ifdef filtr static long M0 = 0; static long M1 = 0; long Out; int A2 = * ; int A1 = * ; int B2 = * ; int B1 = * ; int B0 = * ; #endif //Acknowledge interrupt HWREG(ADC_BASE + ADC_O_ISC) = 1; //Retreive sample Data = (HWREG(ADC_BASE + ADC_O_SEQ + ADC_O_X_SSFIFO)&1023) - 512; //Multiply by sine sample Data = Data * sine[(temp_pointer >> 14) & 0x3ff]; //Increase sine table pointer Temp_Pointer += Increase; //filtering - problems encountered, therefore - turned off by default #ifdef filtr Data>>=scaleIn; Out = ldata * B0 + M0; Out>>=14; M0 = B1 * ldata + M1 - A1 * Out; M1 = B2 * ldata - A2 * Out; //Update output HWREG(GPIO_PORTD_BASE + (GPIO_O_DATA + (0xff << 2))) = (char)(out>>scaleout) + 128; #else //Update output HWREG(GPIO_PORTD_BASE + (GPIO_O_DATA + (0xff << 2))) = (char)(data>>scaleout) + 128; #endif void my_send_ul(unsigned long co, myuart_mode mode) 3

4 int i; int divider; if(mode == MODE_DEC) divider = ; for(i=10;i>0;i--) UARTCharPut(UART0_BASE, '0'+(( co / divider ) % 10)); divider /= 10; if(mode == MODE_BIN) for(i=31;i>=0;i--) UARTCharPut(UART0_BASE, '0'+((co >> i) & 1)); UARTCharPut(UART0_BASE, '\r'); UARTCharPut(UART0_BASE, '\n'); 4

5 Fig. 2. Circuit schematic 5

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

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

More information

FYS3240 PC-based instrumentation and microcontrollers. Signal sampling. Spring 2015 Lecture #5

FYS3240 PC-based instrumentation and microcontrollers. Signal sampling. Spring 2015 Lecture #5 FYS3240 PC-based instrumentation and microcontrollers Signal sampling Spring 2015 Lecture #5 Bekkeng, 29.1.2015 Content Aliasing Nyquist (Sampling) ADC Filtering Oversampling Triggering Analog Signal Information

More information

Audio Noise Figure Meter

Audio Noise Figure Meter Audio Noise Figure Meter Abstract Low noise amplifiers in the audio range are used in many applications. The definition of 'lownoise' is very flexible and poorly defined so any experimenter in this field

More information

Description of the AM Superheterodyne Radio Receiver

Description of the AM Superheterodyne Radio Receiver Superheterodyne AM Radio Receiver Since the inception of the AM radio, it spread widely due to its ease of use and more importantly, it low cost. The low cost of most AM radios sold in the market is due

More information

CHAPTER 13 TRANSMITTERS AND RECEIVERS

CHAPTER 13 TRANSMITTERS AND RECEIVERS CHAPTER 13 TRANSMITTERS AND RECEIVERS Frequency Modulation (FM) Receiver Frequency Modulation (FM) Receiver FREQUENCY MODULATION (FM) RECEIVER Superheterodyne Receiver Heterodyning The word heterodyne

More information

Electrical signal types

Electrical signal types Electrical signal types With BogusBus, our signals were very simple and straightforward: each signal wire (1 through 5) carried a single bit of digital data, 0 Volts representing "off" and 24 Volts DC

More information

Exercise 1: RF Stage, Mixer, and IF Filter

Exercise 1: RF Stage, Mixer, and IF Filter SSB Reception Analog Communications Exercise 1: RF Stage, Mixer, and IF Filter EXERCISE OBJECTIVE DISCUSSION On the circuit board, you will set up the SSB transmitter to transmit a 1000 khz SSB signal

More information

Training Schedule. Robotic System Design using Arduino Platform

Training Schedule. Robotic System Design using Arduino Platform Training Schedule Robotic System Design using Arduino Platform Session - 1 Embedded System Design Basics : Scope : To introduce Embedded Systems hardware design fundamentals to students. Processor Selection

More information

4/30/2012. General Class Element 3 Course Presentation. Practical Circuits. Practical Circuits. Subelement G7. 2 Exam Questions, 2 Groups

4/30/2012. General Class Element 3 Course Presentation. Practical Circuits. Practical Circuits. Subelement G7. 2 Exam Questions, 2 Groups General Class Element 3 Course Presentation ti ELEMENT 3 SUB ELEMENTS General Licensing Class Subelement G7 2 Exam Questions, 2 Groups G1 Commission s Rules G2 Operating Procedures G3 Radio Wave Propagation

More information

EE445L Fall 2011 Quiz 2A Page 1 of 6

EE445L Fall 2011 Quiz 2A Page 1 of 6 EE445L Fall 2011 Quiz 2A Page 1 of 6 Jonathan W. Valvano First: Last: November 18, 2011, 2:00pm-2:50pm. Open book, open notes, calculator (no laptops, phones, devices with screens larger than a TI-89 calculator,

More information

Function Generator Using Op Amp Ic 741 Theory

Function Generator Using Op Amp Ic 741 Theory Function Generator Using Op Amp Ic 741 Theory Note: Op-Amps ua741, LM 301, LM311, LM 324 & AD 633 may be used To design an Inverting Amplifier for the given specifications using Op-Amp IC 741. THEORY:

More information

FYS3240 PC-based instrumentation and microcontrollers. Signal sampling. Spring 2017 Lecture #5

FYS3240 PC-based instrumentation and microcontrollers. Signal sampling. Spring 2017 Lecture #5 FYS3240 PC-based instrumentation and microcontrollers Signal sampling Spring 2017 Lecture #5 Bekkeng, 30.01.2017 Content Aliasing Sampling Analog to Digital Conversion (ADC) Filtering Oversampling Triggering

More information

Topic Advanced Radio Receivers. Explain that an RF amplifier can be used to improve sensitivity;

Topic Advanced Radio Receivers. Explain that an RF amplifier can be used to improve sensitivity; Learning Objectives: At the end of this topic you will be able to; Explain that an RF amplifier can be used to improve sensitivity; Explain that a superheterodyne receiver offers improved selectivity and

More information

OBJECTIVES EQUIPMENT LIST

OBJECTIVES EQUIPMENT LIST 1 Reception of Amplitude Modulated Signals AM Demodulation OBJECTIVES The purpose of this experiment is to show how the amplitude-modulated signals are demodulated to obtain the original signal. Also,

More information

Chapter 2 Analog-to-Digital Conversion...

Chapter 2 Analog-to-Digital Conversion... Chapter... 5 This chapter examines general considerations for analog-to-digital converter (ADC) measurements. Discussed are the four basic ADC types, providing a general description of each while comparing

More information

Massachusetts Institute of Technology MIT

Massachusetts Institute of Technology MIT Massachusetts Institute of Technology MIT Real Time Wireless Electrocardiogram (ECG) Monitoring System Introductory Analog Electronics Laboratory Guilherme K. Kolotelo, Rogers G. Reichert Cambridge, MA

More information

THE AMAZING BARLOW WADLEY XCR-30 CRYSTAL CONTROLLED 30 BAND TRANSISTOR RADIO. (A method to set the AGC) H. Holden, 2018.

THE AMAZING BARLOW WADLEY XCR-30 CRYSTAL CONTROLLED 30 BAND TRANSISTOR RADIO. (A method to set the AGC) H. Holden, 2018. THE AMAZING BARLOW WADLEY XCR-30 CRYSTAL CONTROLLED 30 BAND TRANSISTOR RADIO. (A method to set the AGC) H. Holden, 2018. Introduction: The Barlow Wadley XCR-30 radio is well known to amateur radio enthusiasts

More information

Computer Controlled Curve Tracer

Computer Controlled Curve Tracer Computer Controlled Curve Tracer Christopher Curro The Cooper Union New York, NY Email: chris@curro.cc David Katz The Cooper Union New York, NY Email: katz3@cooper.edu Abstract A computer controlled curve

More information

Introduction. Chapter 6 Notes

Introduction. Chapter 6 Notes Introduction Rather than try to give you the material so that you can answer the questions from first principles, I will provide enough information that you can recognize the correct answer to each question.

More information

HF Receivers, Part 2

HF Receivers, Part 2 HF Receivers, Part 2 Superhet building blocks: AM, SSB/CW, FM receivers Adam Farson VA7OJ View an excellent tutorial on receivers NSARC HF Operators HF Receivers 2 1 The RF Amplifier (Preamp)! Typical

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

HART Modem DS8500. Features

HART Modem DS8500. Features Rev 1; 2/09 EVALUATION KIT AVAILABLE General Description The is a single-chip modem with Highway Addressable Remote Transducer (HART) capabilities and satisfies the HART physical layer requirements. The

More information

SIMPLE Raspberry Pi VHF TRANSCEIVER & TNC

SIMPLE Raspberry Pi VHF TRANSCEIVER & TNC Simple Circuits Inc. SIMPLE Raspberry Pi VHF TRANSCEIVER & TNC 2 Meter Transceiver & TNC Simple Circuits Inc. 2015-2018 4/1/2018 Simple Raspberry Pi VHF Transceiver and TNC Introduction: This document

More information

The Design and Construction of a DDS based Waveform Generator

The Design and Construction of a DDS based Waveform Generator 1 The Design and Construction of a DDS based Waveform Generator Darrell Harmon Abstract A direct digital synthesis (DDS) based signal generator was designed and constructed to cover the frequency range

More information

ADS9850 Signal Generator Module

ADS9850 Signal Generator Module 1. Introduction ADS9850 Signal Generator Module This module described here is based on ADS9850, a CMOS, 125MHz, and Complete DDS Synthesizer. The AD9850 is a highly integrated device that uses advanced

More information

KNOWLEDGE INTEGRATION IN THE RED PROGRAM. Revolutionizing Engineering Departments

KNOWLEDGE INTEGRATION IN THE RED PROGRAM. Revolutionizing Engineering Departments KNOWLEDGE INTEGRATION IN THE RED PROGRAM Revolutionizing Engineering Departments STEM EDUCATION NEEDS RADICAL, FUNDAMENTAL, AND STRUCTURAL CHANGES BEYOND THE EXISTING NORMS 42% of jobs will be in risk

More information

Roland Kammerer. 13. October 2010

Roland Kammerer. 13. October 2010 Peripherals Roland Institute of Computer Engineering Vienna University of Technology 13. October 2010 Overview 1. Analog/Digital Converter (ADC) 2. Pulse Width Modulation (PWM) 3. Serial Peripheral Interface

More information

AM Generation High Level Low Level

AM Generation High Level Low Level AM Generation High Level Low Level Low-level generation In modern radio systems, modulated signals are generated via digital signal processing (DSP). With DSP many types of AM modulation are possible with

More information

Low Power with Long Range RF Module DATASHEET Description

Low Power with Long Range RF Module DATASHEET Description Wireless-Tag WT-900M Low Power with Long Range RF Module DATASHEET Description WT-900M is a highly integrated low-power half-'duplex RF transceiver module embedding high-speed low-power MCU and high-performance

More information

EE12: Laboratory Project (Part-2) AM Transmitter

EE12: Laboratory Project (Part-2) AM Transmitter EE12: Laboratory Project (Part-2) AM Transmitter ECE Department, Tufts University Spring 2008 1 Objective This laboratory exercise is the second part of the EE12 project of building an AM transmitter in

More information

AC : PERSONAL LAB HARDWARE: A SINE WAVE GENERATOR, LOGIC PULSE SIGNAL, AND PROGRAMMABLE SYNCHRONOUS SERIAL INTERFACE FOR ENHANCING EDUCATION

AC : PERSONAL LAB HARDWARE: A SINE WAVE GENERATOR, LOGIC PULSE SIGNAL, AND PROGRAMMABLE SYNCHRONOUS SERIAL INTERFACE FOR ENHANCING EDUCATION AC 2010-1527: PERSONAL LAB HARDWARE: A SINE WAVE GENERATOR, LOGIC PULSE SIGNAL, AND PROGRAMMABLE SYNCHRONOUS SERIAL INTERFACE FOR ENHANCING EDUCATION Jeffrey Richardson, Purdue University James Jacob,

More information

6.101 Introductory Analog Electronics Laboratory

6.101 Introductory Analog Electronics Laboratory 6.101 Introductory Analog Electronics Laboratory Spring 2015, Instructor Gim Hom Project Proposal Transmitting, Receiving, and Interpreting ECG Waveforms Daniel Moon (dhmoon@mit.edu) Thipok (Ben) Rak-amnouykit

More information

2m Weak Signal Sources January 2018

2m Weak Signal Sources January 2018 2m Weak Signal Sources January 2018 Rick Campbell This white paper describes a set of signal sources at power levels from -30dBm to +12dBm in the 144 MHz amateur radio band. All are legal for direct connection

More information

Experiment No. 3 Pre-Lab Phase Locked Loops and Frequency Modulation

Experiment No. 3 Pre-Lab Phase Locked Loops and Frequency Modulation Experiment No. 3 Pre-Lab Phase Locked Loops and Frequency Modulation The Pre-Labs are informational and although they follow the procedures in the experiment, they are to be completed outside of the laboratory.

More information

EE445L Spring 2017 Final Page 1 of 7

EE445L Spring 2017 Final Page 1 of 7 EE445L Spring 2017 Final Page 1 of 7 Jonathan W. Valvano First: Last: EID: This is the closed book section. Calculator is allowed (no laptops, phones, devices with wireless communication). You must put

More information

How Radio Works by Marshall Brain

How Radio Works by Marshall Brain How Radio Works by Marshall Brain "Radio waves" transmit music, conversations, pictures and data invisibly through the air, often over millions of miles -- it happens every day in thousands of different

More information

AES Cambridge Seminar Series 27 October Audio Signal Processing and Rapid Prototyping with the ARM mbed. Dr Rob Toulson

AES Cambridge Seminar Series 27 October Audio Signal Processing and Rapid Prototyping with the ARM mbed. Dr Rob Toulson AES Cambridge Seminar Series 27 October 2010 Audio Signal Processing and Rapid Prototyping with the ARM mbed Dr Rob Toulson Director of The Sound and Audio Engineering Research Group Anglia Ruskin University,

More information

NEW YORK CITY COLLEGE of TECHNOLOGY THE CITY UNIVERSITY OF NEW YORK DEPARTMENT OF ELECTRICAL ENGINEERING AND TELECOMMUNICATIONS TECHNOLOGIES

NEW YORK CITY COLLEGE of TECHNOLOGY THE CITY UNIVERSITY OF NEW YORK DEPARTMENT OF ELECTRICAL ENGINEERING AND TELECOMMUNICATIONS TECHNOLOGIES NEW YORK CITY COLLEGE of TECHNOLOGY THE CITY UNIVERSITY OF NEW YORK DEPARTMENT OF ELECTRICAL ENGINEERING AND TELECOMMUNICATIONS TECHNOLOGIES Course : EET 24 Communications Electronics Module : AM Tx and

More information

Chapter 7: From Digital-to-Analog and Back Again

Chapter 7: From Digital-to-Analog and Back Again Chapter 7: From Digital-to-Analog and Back Again Overview Often the information you want to capture in an experiment originates in the laboratory as an analog voltage or a current. Sometimes you want to

More information

How Radio Works By Marshall Brain

How Radio Works By Marshall Brain How Radio Works By Marshall Brain Excerpted from the excellent resource http://electronics.howstuffworks.com/radio.htm Radio waves transmit music, conversations, pictures and data invisibly through the

More information

LABORATORY #3 QUARTZ CRYSTAL OSCILLATOR DESIGN

LABORATORY #3 QUARTZ CRYSTAL OSCILLATOR DESIGN LABORATORY #3 QUARTZ CRYSTAL OSCILLATOR DESIGN OBJECTIVES 1. To design and DC bias the JFET transistor oscillator for a 9.545 MHz sinusoidal signal. 2. To simulate JFET transistor oscillator using MicroCap

More information

Oscillations and Regenerative Amplification using Negative Resistance Devices

Oscillations and Regenerative Amplification using Negative Resistance Devices Oscillations and Regenerative Amplification using Negative Resistance Devices Ramon Vargas Patron rvargas@inictel.gob.pe INICTEL The usual procedure for the production of sustained oscillations in tuned

More information

Exercise 3: Sound volume robot

Exercise 3: Sound volume robot ETH Course 40-048-00L: Electronics for Physicists II (Digital) 1: Setup uc tools, introduction : Solder SMD Arduino Nano board 3: Build application around ATmega38P 4: Design your own PCB schematic 5:

More information

EE445L Fall 2012 Final Version B Page 1 of 7

EE445L Fall 2012 Final Version B Page 1 of 7 EE445L Fall 2012 Final Version B Page 1 of 7 Jonathan W. Valvano First: Last: This is the closed book section. You must put your answers in the boxes on this answer page. When you are done, you turn in

More information

CATALOG. ANALOG COMMUNICATION SYSTEMS DIGITAL COMMUNICATION SYSTEMS Microcontroller kits Arm controller kits PLC Trainer KITS Regulated Power supplies

CATALOG. ANALOG COMMUNICATION SYSTEMS DIGITAL COMMUNICATION SYSTEMS Microcontroller kits Arm controller kits PLC Trainer KITS Regulated Power supplies CATALOG ANALOG COMMUNICATION SYSTEMS DIGITAL COMMUNICATION SYSTEMS Microcontroller kits Arm controller kits PLC Trainer KITS Regulated Power supplies UNION INTRUMENTS #17 & 18, 4 th floor, Hanumathra Arcade

More information

UNIT-3. Electronic Measurements & Instrumentation

UNIT-3.   Electronic Measurements & Instrumentation UNIT-3 1. Draw the Block Schematic of AF Wave analyzer and explain its principle and Working? ANS: The wave analyzer consists of a very narrow pass-band filter section which can Be tuned to a particular

More information

14 MHz Single Side Band Receiver

14 MHz Single Side Band Receiver EPFL - LEG Laboratoires à options 8 ème semestre MHz Single Side Band Receiver. Objectives. The objective of this work is to calculate and adjust the key elements of an Upper Side Band Receiver in the

More information

ericssonz LBI-38640E MAINTENANCE MANUAL FOR VHF TRANSMITTER SYNTHESIZER MODULE 19D902780G1 DESCRIPTION

ericssonz LBI-38640E MAINTENANCE MANUAL FOR VHF TRANSMITTER SYNTHESIZER MODULE 19D902780G1 DESCRIPTION MAINTENANCE MANUAL FOR VHF TRANSMITTER SYNTHESIZER MODULE 19D902780G1 TABLE OF CONTENTS Page DESCRIPTION........................................... Front Cover GENERAL SPECIFICATIONS...................................

More information

The Icom PCR-1000 as a SDR RF Front End OscarOnline.org David Carr, KD5QGR partially based on a document by Edgar J. Kaiser, DF2MZ

The Icom PCR-1000 as a SDR RF Front End OscarOnline.org David Carr, KD5QGR partially based on a document by Edgar J. Kaiser, DF2MZ The Icom PCR-1000 as a SDR RF Front End OscarOnline.org David Carr, KD5QGR partially based on a document by Edgar J. Kaiser, DF2MZ Purpose: Many times when working in software defined radio some means

More information

EE445L Fall 2014 Quiz 2A Page 1 of 5

EE445L Fall 2014 Quiz 2A Page 1 of 5 EE445L Fall 2014 Quiz 2A Page 1 of 5 Jonathan W. Valvano First: Last: November 21, 2014, 10:00-10:50am. Open book, open notes, calculator (no laptops, phones, devices with screens larger than a TI-89 calculator,

More information

Tuned Radio Frequency Receiver (TRF) The most elementary receiver design, consisting of RF amplifier stages, detector and audio amplifier stages.

Tuned Radio Frequency Receiver (TRF) The most elementary receiver design, consisting of RF amplifier stages, detector and audio amplifier stages. Figure 3-1 Simple radio receiver block diagram. Tuned Radio Frequency Receiver (TRF) The most elementary receiver design, consisting of RF amplifier stages, detector and audio amplifier stages. Jeffrey

More information

Radiation Hardened RF Transceiver For In-Containment Environment Applications Using Commercial Off the Shelf Components

Radiation Hardened RF Transceiver For In-Containment Environment Applications Using Commercial Off the Shelf Components Radiation Hardened RF Transceiver For In-Containment Environment Applications Using Commercial Off the Shelf Components Shawn C. Stafford, Jorge V. Carvajal, Jonathan E. Baisch Westinghouse Electric Company

More information

EE445L Fall 2014 Quiz 2A Page 1 of 5

EE445L Fall 2014 Quiz 2A Page 1 of 5 EE445L Fall 2014 Quiz 2A Page 1 of 5 Jonathan W. Valvano First: Last: November 21, 2014, 10:00-10:50am. Open book, open notes, calculator (no laptops, phones, devices with screens larger than a TI-89 calculator,

More information

CHAPTER 6 Radio Circuits and Systems

CHAPTER 6 Radio Circuits and Systems 6.1 AMPLIFIERS (page 6-1) CHAPTER 6 Radio Circuits and Systems AMPLIFIER GAIN (page 6-2) INPUT AND OUTPUT IMPEDANCE (page 6-2) DISCRETE DEVICE AMPLIFIERS (page 6-2) BASIC CIRCUITS (page 6-2) COMMON-EMITTER

More information

S.E. (Electronics/Electronics and Telecommunication Engg.) (Second Semester) EXAMINATION, 2014 COMMUNICATION THEORY (2008 PATTERN)

S.E. (Electronics/Electronics and Telecommunication Engg.) (Second Semester) EXAMINATION, 2014 COMMUNICATION THEORY (2008 PATTERN) Total No. of Questions 12] [Total No. of Printed Pages 7 Seat No. [4657]-49 S.E. (Electronics/Electronics and Telecommunication Engg.) (Second Semester) EXAMINATION, 2014 COMMUNICATION THEORY (2008 PATTERN)

More information

ILER MK2. QRP SSB Transceiver in Kit Form Appendices. Last update: May 01, ILER-17 MK2 SSB QRP Transceiver Kit Page 1

ILER MK2. QRP SSB Transceiver in Kit Form Appendices. Last update: May 01, ILER-17 MK2 SSB QRP Transceiver Kit Page 1 ILER MK2 QRP SSB Transceiver in Kit Form Appendices Last update: May 01, 2018 ea3gcy@gmail.com Most recent updates and news at: www.qsl.net/ea3gcy ILER-17 MK2 SSB QRP Transceiver Kit Page 1 APPENDIX 1:

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

Radio Receivers. Al Penney VO1NO

Radio Receivers. Al Penney VO1NO Radio Receivers Al Penney VO1NO Role of the Receiver The Antenna must capture the radio wave. The desired frequency must be selected from all the EM waves captured by the antenna. The selected signal is

More information

A Simple Notch Type Harmonic Distortion Analyzer

A Simple Notch Type Harmonic Distortion Analyzer by Kenneth A. Kuhn Nov. 28, 2009, rev. Nov. 29, 2009 Introduction This note describes a simple notch type harmonic distortion analyzer that can be constructed with basic parts. It is intended for use in

More information

JUMA-TRX2 DDS / Control Board description OH2NLT

JUMA-TRX2 DDS / Control Board description OH2NLT JUMA-TRX2 DDS / Control Board description OH2NLT 22.08.2007 General Key functions of the JUMA-TRX2 DDS / Control board are: - provide user interface functions with LCD display, buttons, potentiometers

More information

FlexDDS-NG DUAL. Dual-Channel 400 MHz Agile Waveform Generator

FlexDDS-NG DUAL. Dual-Channel 400 MHz Agile Waveform Generator FlexDDS-NG DUAL Dual-Channel 400 MHz Agile Waveform Generator Excellent signal quality Rapid parameter changes Phase-continuous sweeps High speed analog modulation Wieserlabs UG www.wieserlabs.com FlexDDS-NG

More information

Technician License Course Chapter 3 Types of Radios and Radio Circuits. Module 7

Technician License Course Chapter 3 Types of Radios and Radio Circuits. Module 7 Technician License Course Chapter 3 Types of Radios and Radio Circuits Module 7 Radio Block Diagrams Radio Circuits can be shown as functional blocks connected together. Knowing the description of common

More information

Chapter 14 FSK Demodulator

Chapter 14 FSK Demodulator Chapter 14 FSK Demodulator 14-1 : Curriculum Objectives 1. To understand the operation theory of FSK demodulator. 2. To implement the FSK detector circuit by using PLL. 3. To understand the operation theory

More information

Gentec-EO USA. T-RAD-USB Users Manual. T-Rad-USB Operating Instructions /15/2010 Page 1 of 24

Gentec-EO USA. T-RAD-USB Users Manual. T-Rad-USB Operating Instructions /15/2010 Page 1 of 24 Gentec-EO USA T-RAD-USB Users Manual Gentec-EO USA 5825 Jean Road Center Lake Oswego, Oregon, 97035 503-697-1870 voice 503-697-0633 fax 121-201795 11/15/2010 Page 1 of 24 System Overview Welcome to the

More information

UNIT III Data Acquisition & Microcontroller System. Mr. Manoj Rajale

UNIT III Data Acquisition & Microcontroller System. Mr. Manoj Rajale UNIT III Data Acquisition & Microcontroller System Mr. Manoj Rajale Syllabus Interfacing of Sensors / Actuators to DAQ system, Bit width, Sampling theorem, Sampling Frequency, Aliasing, Sample and hold

More information

LABORATORIES-ECE. Sir Srinivasa Ramanujan - Microprocessor & Microcontroller Laboratory

LABORATORIES-ECE. Sir Srinivasa Ramanujan - Microprocessor & Microcontroller Laboratory LABORATORIES-ECE Sir Srinivasa Ramanujan - Microprocessor & Microcontroller Laboratory Students are given extensive training in 16 bit microprocessors and micro controllers in this laboratory. Individual

More information

EE301 ELECTRONIC CIRCUITS CHAPTER 2 : OSCILLATORS. Lecturer : Engr. Muhammad Muizz Bin Mohd Nawawi

EE301 ELECTRONIC CIRCUITS CHAPTER 2 : OSCILLATORS. Lecturer : Engr. Muhammad Muizz Bin Mohd Nawawi EE301 ELECTRONIC CIRCUITS CHAPTER 2 : OSCILLATORS Lecturer : Engr. Muhammad Muizz Bin Mohd Nawawi 2.1 INTRODUCTION An electronic circuit which is designed to generate a periodic waveform continuously at

More information

EET 223 RF COMMUNICATIONS LABORATORY EXPERIMENTS

EET 223 RF COMMUNICATIONS LABORATORY EXPERIMENTS EET 223 RF COMMUNICATIONS LABORATORY EXPERIMENTS Experimental Goals A good technician needs to make accurate measurements, keep good records and know the proper usage and limitations of the instruments

More information

Amateur Wireless Station Operators License Exam

Amateur Wireless Station Operators License Exam Amateur Wireless Station Operators License Exam Study material 2017 South India Amateur Radio Society, Chennai CHAPTER 5 1 Chapter 5 Amateur Wireless Station Operators License Exam Study Material Chapter

More information

Low distortion signal generator based on direct digital synthesis for ADC characterization

Low distortion signal generator based on direct digital synthesis for ADC characterization ACTA IMEKO July 2012, Volume 1, Number 1, 59 64 www.imeko.org Low distortion signal generator based on direct digital synthesis for ADC characterization Walter F. Adad, Ricardo J. Iuzzolino Instituto Nacional

More information

AVL-10000T AUDIO VIDEO LINK TRANSMITTER TECHNICAL MANUAL

AVL-10000T AUDIO VIDEO LINK TRANSMITTER TECHNICAL MANUAL AVL-10000T AUDIO VIDEO LINK TRANSMITTER TECHNICAL MANUAL Document : AVL-10000T Version: 1.00 Author: Henry S Date: 25 July 2008 This module contains protection circuitry to guard against damage due to

More information

10 GHz Microwave Link

10 GHz Microwave Link 10 GHz Microwave Link Project Project Objectives System System Functionality Testing Testing Procedures Cautions and Warnings Problems Encountered Recommendations Conclusion PROJECT OBJECTIVES Implement

More information

Phase-locked loop PIN CONFIGURATIONS

Phase-locked loop PIN CONFIGURATIONS NE/SE DESCRIPTION The NE/SE is a versatile, high guaranteed frequency phase-locked loop designed for operation up to 0MHz. As shown in the Block Diagram, the NE/SE consists of a VCO, limiter, phase comparator,

More information

Introduction. sig. ref. sig

Introduction. sig. ref. sig Introduction A lock-in amplifier, in common with most AC indicating instruments, provides a DC output proportional to the AC signal under investigation. The special rectifier, called a phase-sensitive

More information

Rethinking The Role Of phemt Cascode Amplifiers In RF Design

Rethinking The Role Of phemt Cascode Amplifiers In RF Design Guest Column February 10, 2014 Rethinking The Role Of phemt Cascode Amplifiers In RF Design By Alan Ake, Skyworks Solutions, Inc. I consider myself fortunate that, as a fresh-out-of-school EE, I was able

More information

VALLIAMMAI ENGINEERING COLLEGE SRM Nagar, Kattankulathur 603 203. DEPARTMENT OF ELECTRONICS & COMMUNICATION ENGINEERING QUESTION BANK SUBJECT : EC6404 LINEAR INTEGRATED CIRCUITS SEM / YEAR: IV / II year

More information

B.Tech II Year II Semester (R13) Supplementary Examinations May/June 2017 ANALOG COMMUNICATION SYSTEMS (Electronics and Communication Engineering)

B.Tech II Year II Semester (R13) Supplementary Examinations May/June 2017 ANALOG COMMUNICATION SYSTEMS (Electronics and Communication Engineering) Code: 13A04404 R13 B.Tech II Year II Semester (R13) Supplementary Examinations May/June 2017 ANALOG COMMUNICATION SYSTEMS (Electronics and Communication Engineering) Time: 3 hours Max. Marks: 70 PART A

More information

LABORATORIES-ECE. Microprocessor & Microcontroller Lab - Srinivasa Ramanujan Lab

LABORATORIES-ECE. Microprocessor & Microcontroller Lab - Srinivasa Ramanujan Lab LABORATORIES-ECE Microprocessor & Microcontroller Lab - Srinivasa Ramanujan Lab Students are given extensive training in 16 bit microprocessors and micro controllers in this laboratory. Individual attention

More information

At the end of this course, students should be able to: 1 explain experimental results with theoretical expected outcome

At the end of this course, students should be able to: 1 explain experimental results with theoretical expected outcome COURSE NAME ELECTRONIC FUNDAMENTAL LABORATORY 1 COURSE CODE BENC 1711 COURSE SYNOPSIS This course covers topics in BENE 1133 Principle of Electric and BENT 2133 Electric Circuit Analysis with the following

More information

TLE9879 EvalKit V1.2 Users Manual

TLE9879 EvalKit V1.2 Users Manual TLE9879 EvalKit V1.2 Users Manual Contents Abbreviations... 3 1 Concept... 4 2 Interconnects... 5 3 Test Points... 6 4 Jumper Settings... 7 5 Communication Interfaces... 8 5.1 LIN (via Banana jack and

More information

FM to AM Radio Converter

FM to AM Radio Converter FM to AM Radio Converter Owing to a fast decline of medium waveband broadcasts and a continuing interest with vintage AM radios, Guy Fernando (M0OOX) presents this cost effective design for enabling FM

More information

Design of Class F Power Amplifiers Using Cree GaN HEMTs and Microwave Office Software to Optimize Gain, Efficiency, and Stability

Design of Class F Power Amplifiers Using Cree GaN HEMTs and Microwave Office Software to Optimize Gain, Efficiency, and Stability White Paper Design of Class F Power Amplifiers Using Cree GaN HEMTs and Microwave Office Software to Optimize Gain, Efficiency, and Stability Overview This white paper explores the design of power amplifiers

More information

Design and Implementation of Digital Stethoscope using TFT Module and Matlab Visualisation Tool

Design and Implementation of Digital Stethoscope using TFT Module and Matlab Visualisation Tool World Journal of Technology, Engineering and Research, Volume 3, Issue 1 (2018) 297-304 Contents available at WJTER World Journal of Technology, Engineering and Research Journal Homepage: www.wjter.com

More information

AN Low Frequency RFID Card Reader. Application Note Abstract. Introduction. Working Principle of LF RFID Reader

AN Low Frequency RFID Card Reader. Application Note Abstract. Introduction. Working Principle of LF RFID Reader Low Frequency RFID Card Reader Application Note Abstract AN52164 Authors: Richard Xu Jemmey Huang Associated Project: None Associated Part Family: CY8C24x23 Software Version: PSoC Designer 5.0 Associated

More information

ME 461 Laboratory #3 Analog-to-Digital Conversion

ME 461 Laboratory #3 Analog-to-Digital Conversion ME 461 Laboratory #3 Analog-to-Digital Conversion Goals: 1. Learn how to configure and use the MSP430 s 10-bit SAR ADC. 2. Measure the output voltage of your home-made DAC and compare it to the expected

More information

Week 8 AM Modulation and the AM Receiver

Week 8 AM Modulation and the AM Receiver Week 8 AM Modulation and the AM Receiver The concept of modulation and radio transmission is introduced. An AM receiver is studied and the constructed on the prototyping board. The operation of the AM

More information

ENEE 307 Electronic Circuit Design Laboratory Spring 2012

ENEE 307 Electronic Circuit Design Laboratory Spring 2012 ENEE 307 Electronic Circuit Design Laboratory Spring 2012 Agis A. Iliadis Electrical Engineering Department University of Maryland College Park MD 20742 Wireless Communications-Transmitters 4.1. Wireless

More information

Analog I/O. ECE 153B Sensor & Peripheral Interface Design Winter 2016

Analog I/O. ECE 153B Sensor & Peripheral Interface Design Winter 2016 Analog I/O ECE 153B Sensor & Peripheral Interface Design Introduction Anytime we need to monitor or control analog signals with a digital system, we require analogto-digital (ADC) and digital-to-analog

More information

ni.com Sensor Measurement Fundamentals Series

ni.com Sensor Measurement Fundamentals Series Sensor Measurement Fundamentals Series Introduction to Data Acquisition Basics and Terminology Litkei Márton District Sales Manager National Instruments What Is Data Acquisition (DAQ)? 3 Why Measure? Engineers

More information

(Refer Slide Time: 00:03:22)

(Refer Slide Time: 00:03:22) Analog ICs Prof. K. Radhakrishna Rao Department of Electrical Engineering Indian Institute of Technology, Madras Lecture - 27 Phase Locked Loop (Continued) Digital to Analog Converters So we were discussing

More information

ILER MK2. Appendices

ILER MK2. Appendices ILER MK2 QRP SSB Transceiver in Kit Form Appendices Last update: July 20, 2015 ea3gcy@gmail.com Most recent updates and news at: www.qsl.net/ea3gcy ILER-17 MK2 SSB QRP Transceiver Kit Page 1 APPENDIX 1:

More information

433MHz front-end with the SA601 or SA620

433MHz front-end with the SA601 or SA620 433MHz front-end with the SA60 or SA620 AN9502 Author: Rob Bouwer ABSTRACT Although designed for GHz, the SA60 and SA620 can also be used in the 433MHz ISM band. The SA60 performs amplification of the

More information

HF Amateur SSB Receiver

HF Amateur SSB Receiver HF Amateur SSB Receiver PCB Set for radio club project http://rhelectronics.net PCB for DIY HF Amateur SSB Receiver 20M The receiver is a simple syperheterodyne type with quartz crystal filter. The circuit

More information

LAB Assignment No. 6: TO STUDY GENERATION OF DOUBLE SIDE BAND AMPLITUDE MODULATE (AM) WAVEFORMS, USING DSB/SSB TRANSMITTER

LAB Assignment No. 6: TO STUDY GENERATION OF DOUBLE SIDE BAND AMPLITUDE MODULATE (AM) WAVEFORMS, USING DSB/SSB TRANSMITTER LAB Assignment No. 6: TO STUDY GENERATION OF DOUBLE SIDE BAND AMPLITUDE MODULATE (AM) WAVEFORMS, USING DSB/SSB TRANSMITTER APPARATUS: Oscilloscope DSB/SSB Traine Power supply Connecting leads THEORY: A

More information

Module 1B RF Test & Measurement

Module 1B RF Test & Measurement 1 EECE 411 Antennas and Propagation Module 1B RF Test & Measurement Introduction to Spectrum Analyzers 2 Why Measure the Spectrum of a Signal? to characterize noise and interference to measure distortion

More information

A DSP IMPLEMENTED DIGITAL FM MULTIPLEXING SYSTEM

A DSP IMPLEMENTED DIGITAL FM MULTIPLEXING SYSTEM A DSP IMPLEMENTED DIGITAL FM MULTIPLEXING SYSTEM Item Type text; Proceedings Authors Rosenthal, Glenn K. Publisher International Foundation for Telemetering Journal International Telemetering Conference

More information

070 ELECTRONICS WORKS EXAMINATION STRUCTURE

070 ELECTRONICS WORKS EXAMINATION STRUCTURE 070 ELECTRONICS WORKS EXAMINATION STRUCTURE The trade will be examined under the following components or subject grouping: Electronic Devices and Circuit, Radio Communication and Television. EXAMINATION

More information

P a g e 1. Introduction

P a g e 1. Introduction P a g e 1 Introduction 1. Signals in digital form are more convenient than analog form for processing and control operation. 2. Real world signals originated from temperature, pressure, flow rate, force

More information

Single Conversion LF Upconverter Andy Talbot G4JNT Jan 2009

Single Conversion LF Upconverter Andy Talbot G4JNT Jan 2009 Single Conversion LF Upconverter Andy Talbot G4JNT Jan 2009 Mark 2 Version Oct 2010, see Appendix, Page 8 This upconverter is designed to directly translate the output from a soundcard from a PC running

More information

Copyright by Syed Ashad Mustufa Younus Copyright by Syed Ashad Mustufa Younus

Copyright by Syed Ashad Mustufa Younus Copyright by Syed Ashad Mustufa Younus Copyright by Syed Ashad Mustufa Younus Copyright by Syed Ashad Mustufa Younus Microcontroller & Applications Week 1 Instructor: Syed Ashad Mustufa Younus HP: +92 (0) 300 240 8943 Email: :sashad@iqra.edu.pks

More information