DKAN0008A PIC18 Software UART Timing Requirements

Size: px
Start display at page:

Download "DKAN0008A PIC18 Software UART Timing Requirements"

Transcription

1 DKAN0008A PIC18 Sotware UART Timing Requirements 11 June 2009 Introduction Design conditions oten limit the hardware peripherals available or an embedded system. Perhaps the available hardware UARTs are already allocated, or the system requires alternate unctionality (creating a conlict when the UART shares a common pin). Implementing the UART in sotware is one common solution. The Microchip MPLAB C18 C Compiler Libraries include sotware UART unctions. Implementing this UART requires the user to calculate and meet the speciic timing requirements or the desired baud rate. This application note provides inormation on the time delays required in the serial data sampling routines and the relationship between the sampling rate and the serial data. Background The MPLAB C18 compiler eatures both hardware and sotware libraries or each communications peripheral ound in Microchip s PIC18 amily o microcontroller products. The hardware libraries take ull advantage o port registers and assigned port pins, while the sotware libraries allow the user to speciy and conigure GPIO pins as a communications port. amiliarity with the MPLAB IDE environment, the MPLAB C18 C Compiler, and RS232 is assumed. The deault library unctions expect a host serial port conigured or 8 data s, 1 stop, no parity, and no low control. Microchip provides all o the assembly iles or the library, so the developer can modiy the coniguration and/or port pins. Application The C18 library provides unctions or initializing ports and transmitting/receiving serial data. However, the embedded developer must provide the delay routines used by the library unctions, namely DelayTXBitUART, DelayRXHalBitUART, and DelayRXBitUART. These routines set delays that correspond to the periods during communication. This provides a means to synchronize data transer and received data. Incoming data is identiied by continuously polling the receive pin. A high-to-low transition indicates the start o the serial data rame. A hal- delay sets the point at the start s midpoint. Ater the initial hal- delay, ull- delays are used to the remaining data. This is repeated or each rame o received data. igure 1 illustrates this technique or one rame. Page 1 o 6

2 PIC18 Sotware UART Timing Requirements start transition hal- delay ull- delay ull- delay ull- delay ull- delay ull- delay ull- delay ull- delay ull- delay Logic 1 Idle Start Bit 1 Bit 2 Bit 3 Bit 4 Bit 5 Bit 6 Bit 7 Bit 8 Stop Idle Logic 0 igure 1. RS-232 Logic Level Signal Sample and Delay Contributing actors to sampling error include the initial response delay to the start, the hal- and ull- delay inaccuracies, and the transmitter and receiver clock tolerances. Each actor contributes a small t rom the ideal point o each. These deviations accumulate over the entire data rame and can shit the point beore or ater a data position, resulting in data recovery errors. Some analysis is required to assure reliable communication. Initial Response Delay The initial response delay t ird is the maximum time between the start s transition and its detection. It is determined by how oten the receive pin is polled. Thereore, the number o instructions executed by the microcontroller between polling s inluences the size o the initial response delay. t ird contributes a one-time oset to each data rame. igure 2 illustrates the timing errors. Use equation (1) to calculate the time delay provided by the polling routine. Start transition Start transition + initial response delay Ideal point Sample point delay (hal- + polling) Ideal point Nominal window Sample point delay (hal- + ull- + polling) Tcte Ideal point Tcte Sample window shit rom eect o polling, hal, and ull- delays Logic 1 Target Receive Idle Start Bit 1 Bit 8 Stop Logic 0 igure 2. Sample Point Change (1) t ird Polling _ routineinstruction _ cycles Digi-Key Corporation Page 2 o 6

3 PIC18 Sotware UART Timing Requirements or example, a inal clock requency o 4MHz and 3 instruction cycles in the polling routine results in a t ird o 3us. Receive Hal-Bit and ull-bit Delays The receive hal- and ull- delays determine the number o instruction cycles required or any illator and rate combination (see also the C18 library documentation, Chapter 3.6). Equations (2) and (3) deine these relationships, respectively baud (2) RXhaldelay 9( ) baud (3) RXdelay 14( ) 2 or example, a inal clock requency o 4MHz and a baud rate o 9600bps require a hal- delay o 44 instruction cycles and a ull- delay o 91 instruction cycles. Use equations (4) and (5) to calculate the time delay provided by the hal- and ull- instruction cycle delays, respectively. or the example above, the hal- time delay is 53us, and the ull- time delay is 105us. (4) (5) Thal T ( RXhaldelay + 9) ( RXdelay + 14) or received data at 9600bps, the total time period (1 start, 8 data s) is 937.5us, with the last data s center point at 885.4us. Sampling the incoming data requires 1 Thal and 8 T delays, totaling 893us. The point o the last data is oset by approximately 7.6us rom the center o the period. Clock Tolerance Error The clock variation between the transmitter and receiver also contribute to the sampling error. Clock error Tcte is the time between the point and the n th data o the transmitted data rame. The window bounded by Tcte and Tcte varies, since microcontroller internal illators can vary by ±2% at ambient and ±10% over the operational temperature range. max and min are the worst case clock requencies in the application s environment. Equations (6) and (7) determine i the inal occurs beore the end o the n th o the data rame. (6) Tcte ns 0.5 min tx,max tx, ns Digi-Key Corporation Page 3 o 6

4 PIC18 Sotware UART Timing Requirements (7) Tcte < 0 ns is the number o s in the packet (including start and data s). Equations (8) and (9) ensure that the takes place ater the n th begins. (8) Tcte ns 0.5 max t tx,min tx, ns 1 (9) Tcte > 0 Assume a host transmit rate o 9600bps, 9 s to recover (1 start, 8 data s), and a 4MHz clock with an accuracy o ±2%. The receiving microcontroller s clock o 4MHz also has an accuracy o ±2%. Using equation (6) and (8) results in Tcte -15.6us and Tcte 17.7us, meeting the timing boundary conditions in equation (7) and (9). With the transmit clock accuracy decreased to ±4 %, Tcte 2.0us and Tcte 0us, ailing the boundary requirements, resulting in communication errors at the worst case clock requencies. Total Receive Error Total receiver error Ttre is the sum o the initial response delay, the hal- and ull- delays, and the clock tolerance error. In eect, the window, bounded by the clock variation, is shited in time due to the accumulation o timing errors. This shit can cause the window to all outside the data boundaries, resulting in communication errors. Equations (10) and (11) determine i the inal occurs beore the end o the n th o the data rame. Equations (12) and (13) ensure that the takes place ater the n th begins. ( ( ) (10) Ttre Tcte + t + Thal + T ( ns 1) min ird (11) Ttre < ns 0.5 baud ( ( ) (12) Ttre Tcte + t + Thal + T ( ns 1) max ird (13) Ttre > ns 0.5 baud Expanding on the prior example, assume a host transmit rate o 9600bps, 9 s to recover (1 start, 8 data s), and a 4MHz clock with an accuracy o ±2%. The receiving microcontroller s 4MHz clock has an accuracy o ±2%. Applying the results rom equations (1), (4), (5), (6) and (8), in equations (10) and (12) results in Ttre -15.6us and Ttre 17.7us, meeting the timing boundary conditions in equation (11) and (13). Digi-Key Corporation Page 4 o 6

5 PIC18 Sotware UART Timing Requirements Accumulated timing eects can move the point to the edge o the period. Noise on the line or capacitive eects altering the signal edge rate can urther reduce the margin until data is not reliably recovered. Transmission ull-bit Delay Error Data transmission rom the target also introduces timing errors rom the ull- delay inaccuracy and clock tolerance. The transmit ull- delay, equation (14), determines the number o instruction cycles required or any illator and rate combination. Equation (15) calculates the time delay provided by the ull- instruction cycle delay baud (14) TXdelay 12( ) 2 (15) T tx _ delay ( TXdelay + 12) or a microcontroller clock requency o 4MHz and a baud rate o 9600bps, a ull- delay o 93 instruction cycles is required. The ull- time delay is 105us. Transmission timing errors accumulate as the start, 8 data s, and stop are transmitted and may impact the ability o the host receiver to recover the data. Conclusion A conservative timing margin must be maintained to ensure reliable data transer. I high rates are required, a tight clock tolerance enhances the timing margin. Increasing the clock requency reduces the sotware hal- and ull- delay inaccuracies. Reducing the serial data rate provides longer periods, increasing the timing margin. Using sotware UART is not without pitalls. But, once the contributing error actors are understood and ameliorated, a reliable serial communication port can be implemented using any pair o GPIO pins. Additional Inormation MPLAB C18 C Compiler Libraries, Chapter 3.6; Microchip Technology, Inc. Digi-Key Corporation Page 5 o 6

6 PIC18 Sotware UART Timing Requirements Disclaimer This document is or inormational use only and is subject to change without prior notice. Digi-Key makes no commitment to update or keep current the inormation contained herein. Digi-Key does not guarantee or warrant that any inormation provided is accurate, complete, or correct and disclaims any and all liability associated with the use o the inormation contained herein. The use o this inormation and Digi-Key s liability is subject to Digi-Key s standard Terms & Conditions which can be ound at by clicking on the Terms & Conditions link at the bottom o the web page. No license, whether express, implied, arising by estoppel or otherwise is granted under any intellectual property or other rights o Digi-Key or others. Trademarks DIGI-KEY is a registered trademark o Digi-Key Corporation. All other trademarks, service marks and product names contained herein are the sole property o their respective owner and their use is or inormational purposes only and does not imply any endorsement, recommendation, sponsorship or approval by the trademark owner o the contents. Copyright Use o this document is limited to customer s internal business use or the evaluation and purchase o products. No permission is granted to the user to copy, print, store, distribute, transmit, display in public or modiy the content o this document in any way or any other purpose. Copyright 2009 Digi-Key Corporation. All rights reserved. Digi-Key Corporation Page 6 o 6

Power Optimization in Stratix IV FPGAs

Power Optimization in Stratix IV FPGAs Power Optimization in Stratix IV FPGAs May 2008, ver.1.0 Application Note 514 Introduction The Stratix IV amily o devices rom Altera is based on 0.9 V, 40 nm Process technology. Stratix IV FPGAs deliver

More information

Technical Brief High-Speed Board Design Advisor Thermal Management

Technical Brief High-Speed Board Design Advisor Thermal Management Introduction TB-093-1.0 Technical Brie High-Speed Board Design Advisor Thermal Management This document contains a step-by-step tutorial and checklist with a best-practice set o step-by-step guidelines

More information

Section III. Area, Timing and Power Optimization

Section III. Area, Timing and Power Optimization Section III. Area, Timing and Power Optimization Introduction Physical implementation can be an intimidating and challenging phase o the design process. This section introduces eatures in Altera s Quartus

More information

2. Transceiver Design Flow Guide

2. Transceiver Design Flow Guide 2. Transceiver Design Flow Guide SIV53002-4.0 This chapter describes the Altera-recommended basic design low that simpliies Stratix IV GX transceiver-based designs. Use the ollowing design low techniques

More information

T5753C. UHF ASK/FSK Transmitter DATASHEET. Features

T5753C. UHF ASK/FSK Transmitter DATASHEET. Features T553C UHF ASK/FSK Transmitter DATASHEET Features Integrated PLL loop ilter ESD protection also at / (3kV HBM/150V MM; Except pin 2: 3kV HBM/100V MM) High output power (8.0dBm) with low supply current (9.0mA)

More information

2. Transceiver Design Flow Guide for Stratix IV Devices

2. Transceiver Design Flow Guide for Stratix IV Devices February 2011 SIV53002-4.1 2. Transceiver Design Flow Guide or Stratix IV Devices SIV53002-4.1 This chapter describes the Altera-recommended basic design low that simpliies Stratix IV GX transceiver-based

More information

RF PIN Diodes - Dual, Common Cathode in SOT-323

RF PIN Diodes - Dual, Common Cathode in SOT-323 BAR64V-5W R PIN Diodes - Dual, Common Cathode in SOT-323 DESIGN SUPPORT TOOLS click logo to get started Models Available DESCRIPTION Characterized by low reverse capacitance the PIN diodes BAR64V-5W was

More information

SILICON DESIGNS, INC Model 1010 DIGITAL ACCELEROMETER

SILICON DESIGNS, INC Model 1010 DIGITAL ACCELEROMETER SILICON DESIGNS, INC Model 1010 DIGITAL ACCELEROMETER CAPACITIVE DIGITAL OUTPUT WIDE TEMPERATURE RANGE SURFACE MOUNT PACKAGE FEATURES Digital Pulse Density Output Low Power Consumption -55 to +125 (C Operation

More information

ATA8401. UHF ASK/FSK Industrial Transmitter DATASHEET. Features. Applications

ATA8401. UHF ASK/FSK Industrial Transmitter DATASHEET. Features. Applications ATA801 UHF ASK/FSK Industrial Transmitter DATASHEET Features Integrated PLL loop ilter ESD protection (3kV HBM/150V MM) High output power (8.0dBm) with low supply current (9.0mA) Modulation scheme ASK/FSK

More information

AP3598A 21 PVCC 15 VCC 9 FS HGATE1 BOOT1 PHASE1 23 LGATE1 16 PGOOD R LG1 3 EN 4 PSI 5 VID 8 VREF HGATE2 18 BOOT2 19 PHASE2 7 REFIN LGATE2 6 REFADJ

AP3598A 21 PVCC 15 VCC 9 FS HGATE1 BOOT1 PHASE1 23 LGATE1 16 PGOOD R LG1 3 EN 4 PSI 5 VID 8 VREF HGATE2 18 BOOT2 19 PHASE2 7 REFIN LGATE2 6 REFADJ APPLICATION NOTE 24 COMPACT DUAL-PHASE SYNCHRONOUS-RECTIFIED BUCK CONTROLLER General Description The is a dual-phase synchronous buck PWM controller with integrated drivers which are optimized or high

More information

Notice Notice Notice Notice Notice

Notice Notice Notice Notice Notice TITLE: PCI-SIG ENGINEERING CHANGE NOTICE OCuLink Cable Spec ECN DATE: March, 0 AFFECTED DOCUMENT: OCuLink.0 SPONSOR: Part I:. Summary o the Functional Changes Alex Haser (Molex), Jay Neer (Molex) The IL/

More information

Request Request Request Request Request Request Request

Request Request Request Request Request Request Request TITLE: DATE: March, 0 AFFECTED DOCUMENT: OCuLink.0 SPONSOR: Part I:. Summary o the Functional Changes PCI-SIG ENGINEERING CHANGE REQUEST OCuLink Cable Spec ECR Rev. Alex Haser (Molex), Jay Neer (Molex)

More information

UM0791 User manual. Demonstration firmware for the DMX-512 communication protocol receiver based on the STM32F103Zx. Introduction

UM0791 User manual. Demonstration firmware for the DMX-512 communication protocol receiver based on the STM32F103Zx. Introduction User manual Demonstration firmware for the DMX-512 communication protocol receiver based on the STM32F103Zx Introduction This document describes how to use the demonstration firmware for the DMX-512 communication

More information

EUP A, 30V, 340KHz Synchronous Step-Down Converter DESCRIPTION FEATURES APPLICATIONS. Typical Application Circuit

EUP A, 30V, 340KHz Synchronous Step-Down Converter DESCRIPTION FEATURES APPLICATIONS. Typical Application Circuit 2A, 30, 340KHz ynchronous tep-down Converter DECRIPTION The is a synchronous current mode buck regulator capable o driving 2A continuous load current with excellent line and load regulation. The can operate

More information

SAS-2 6Gbps PHY Specification

SAS-2 6Gbps PHY Specification SAS-2 6Gbps PHY Speciication T10/07-063r2 Date: March 8, 2007 To: T10 Technical Committee From: Alvin Cox (alvin.cox@seagate.com) Subject: SAS-2 6Gbps PHY Electrical Speciication Abstract: The attached

More information

DEVELOPMENT OF CARRIER-PHASE-BASED TWO-WAY SATELLITE TIME AND FREQUENCY TRANSFER (TWSTFT)

DEVELOPMENT OF CARRIER-PHASE-BASED TWO-WAY SATELLITE TIME AND FREQUENCY TRANSFER (TWSTFT) 36 th Annual Precise Time and Time Interval (PTTI Meeting DEVELOPMENT OF CARRIER-PHASE-BASED TWO-WAY SATELLITE TIME AND FREQUENCY TRANSFER (TWSTFT Blair Fonville, Demetrios Matsakis Time Service Department

More information

Software Defined Radio Forum Contribution

Software Defined Radio Forum Contribution Committee: Technical Sotware Deined Radio Forum Contribution Title: VITA-49 Drat Speciication Appendices Source Lee Pucker SDR Forum 604-828-9846 Lee.Pucker@sdrorum.org Date: 7 March 2007 Distribution:

More information

EUP3484A. 3A, 30V, 340KHz Synchronous Step-Down Converter DESCRIPTION FEATURES APPLICATIONS. Typical Application Circuit

EUP3484A. 3A, 30V, 340KHz Synchronous Step-Down Converter DESCRIPTION FEATURES APPLICATIONS. Typical Application Circuit 3A, 30, 340KHz ynchronous tep-down Converter DECRIPTION The is a synchronous current mode buck regulator capable o driving 3A continuous load current with excellent line and load regulation. The can operate

More information

Overexcitation protection function block description

Overexcitation protection function block description unction block description Document ID: PRELIMIARY VERSIO ser s manual version inormation Version Date Modiication Compiled by Preliminary 24.11.2009. Preliminary version, without technical inormation Petri

More information

ISSUE: April Fig. 1. Simplified block diagram of power supply voltage loop.

ISSUE: April Fig. 1. Simplified block diagram of power supply voltage loop. ISSUE: April 200 Why Struggle with Loop ompensation? by Michael O Loughlin, Texas Instruments, Dallas, TX In the power supply design industry, engineers sometimes have trouble compensating the control

More information

Using Z8 Encore! XP MCU for RMS Calculation

Using Z8 Encore! XP MCU for RMS Calculation Application te Using Z8 Encore! XP MCU for RMS Calculation Abstract This application note discusses an algorithm for computing the Root Mean Square (RMS) value of a sinusoidal AC input signal using the

More information

UHF ASK/FSK. Transmitter T5754

UHF ASK/FSK. Transmitter T5754 Features Integrated PLL Loop Filter ESD Protection (4 kv HBM/200 V MM; Except Pin 2: 4 kv HBM/100 V MM) also at / High Output Power (. dbm) with Low Supply Current (9.0 ma) Modulation Scheme ASK/ FSK FSK

More information

ECE5984 Orthogonal Frequency Division Multiplexing and Related Technologies Fall Mohamed Essam Khedr. Channel Estimation

ECE5984 Orthogonal Frequency Division Multiplexing and Related Technologies Fall Mohamed Essam Khedr. Channel Estimation ECE5984 Orthogonal Frequency Division Multiplexing and Related Technologies Fall 2007 Mohamed Essam Khedr Channel Estimation Matlab Assignment # Thursday 4 October 2007 Develop an OFDM system with the

More information

Study Guide for the First Exam

Study Guide for the First Exam Study Guide or the First Exam Chemistry 838 Fall 27 T V Atkinson Department o Chemistry Michigan State Uniersity East Lansing, MI 48824 Table o Contents Table o Contents...1 Table o Tables...1 Table o

More information

Measuring the Speed of Light

Measuring the Speed of Light Physics Teaching Laboratory Measuring the peed o Light Introduction: The goal o this experiment is to measure the speed o light, c. The experiment relies on the technique o heterodyning, a very useul tool

More information

Application Note AN027

Application Note AN027 Temperature compensation by indirect method By S. Hellan, S. Namtvedt Keywords Temperature compensation Frequency error Crystal oscillators Initial crystal tolerance Crystal temperature drit Crystal aging

More information

Tel: Fax: OMESH Networks Inc. 2011

Tel: Fax: OMESH Networks Inc. 2011 Section 1: Purpose OPM15 is a large-scale cognitive wireless networking module, providing great flexibility for a wide range of applications. Powered by the OPM optimized radio design and networking stack,

More information

SKY : GHz SP3T/SPDT Wire-Bondable GaAs Die

SKY : GHz SP3T/SPDT Wire-Bondable GaAs Die DATA SHEET SKY13434-002: 0.1 6.0 GHz SP3T/SPDT Wire-Bondable GaAs Die Applications 802.11 a/b/g/n/ac WLAN networks Embedded modules Features SP3T (2.5 GHz) and SPDT (5.0 GHz) switches with Bluetooth capability

More information

DEVELOPMENT OF CARRIER-PHASE-BASED TWO-WAY SATELLITE TIME AND FREQUENCY TRANSFER (TWSTFT)

DEVELOPMENT OF CARRIER-PHASE-BASED TWO-WAY SATELLITE TIME AND FREQUENCY TRANSFER (TWSTFT) 36 th Annual Precise Time and Time Interval (PTTI Meeting DEVELOPMENT OF CARRIER-PHASE-BASED TWO-WAY SATELLITE TIME AND FREQUENCY TRANSFER (TWSTFT Blair Fonville, Demetrios Matsakis Time Service Department

More information

Ceramic Disc Capacitors Safety, Class X1/Y2 400/250 V (AC) Series DN

Ceramic Disc Capacitors Safety, Class X1/Y2 400/250 V (AC) Series DN Obsolete - Please refer to alternative VY2 series (28535) EMI/RI Y2-N tangent line SH EATURES Complying with EN 132 400 and IEC 60384-14, 2nd edition, including amendment 1.1995 High reliability Kinked

More information

SKY LF: GHz Five-Bit Digital Attenuator (0.5 db LSB)

SKY LF: GHz Five-Bit Digital Attenuator (0.5 db LSB) DATA SHEET SKY12328-350LF: 0.5-4.0 GHz Five-Bit Digital Attenuator (0.5 LSB) Applications Transceiver transmit automatic level control or receive automatic gain control in WiMAX, GSM, CDMA, WCDMA, WLAN,

More information

Lock-In Amplifiers SR510 and SR530 Analog lock-in amplifiers

Lock-In Amplifiers SR510 and SR530 Analog lock-in amplifiers Lock-In Ampliiers SR510 and SR530 Analog lock-in ampliiers SR510/SR530 Lock-In Ampliiers 0.5 Hz to 100 khz requency range Current and voltage inputs Up to 80 db dynamic reserve Tracking band-pass and line

More information

Preprint. This is the submitted version of a paper published in Electronic environment.

Preprint.   This is the submitted version of a paper published in Electronic environment. http://www.diva-portal.org Preprint This is the submitted version o a paper published in Electronic environment. Citation or the original published paper (version o record): Stranneb, D. (0) A Primer on

More information

AA103-72/-72LF: 10 MHz GHz GaAs One-Bit Digital Attenuator (10 db LSB)

AA103-72/-72LF: 10 MHz GHz GaAs One-Bit Digital Attenuator (10 db LSB) DATA SHEET AA103-72/-72LF: 10 MHz - 2.5 GHz GaAs One-Bit Digital Attenuator (10 LSB) Applications Cellular radio Wireless data systems WLL gain level control circuits Features Attenuation: 10 Single, positive

More information

SKY LF: GHz Five-Bit Digital Attenuator with Serial-to-Parallel Driver (0.5 db LSB)

SKY LF: GHz Five-Bit Digital Attenuator with Serial-to-Parallel Driver (0.5 db LSB) DATA SHEET SKY12345-362LF: 0.7-4.0 GHz Five-Bit Digital Attenuator with Serial-to-Parallel Driver (0.5 LSB) Applications Base stations Wireless and RF data Wireless local loop gain control circuits Features

More information

3.6 Intersymbol interference. 1 Your site here

3.6 Intersymbol interference. 1 Your site here 3.6 Intersymbol intererence 1 3.6 Intersymbol intererence what is intersymbol intererence and what cause ISI 1. The absolute bandwidth o rectangular multilevel pulses is ininite. The channels bandwidth

More information

PLANNING AND DESIGN OF FRONT-END FILTERS

PLANNING AND DESIGN OF FRONT-END FILTERS PLANNING AND DESIGN OF FRONT-END FILTERS AND DIPLEXERS FOR RADIO LINK APPLICATIONS Kjetil Folgerø and Jan Kocba Nera Networks AS, N-52 Bergen, NORWAY. Email: ko@nera.no, jko@nera.no Abstract High capacity

More information

SKY LF: GHz Five-Bit Digital Attenuator (1 db LSB)

SKY LF: GHz Five-Bit Digital Attenuator (1 db LSB) DATA SHEET SKY12323-303LF: 0.5-3.0 GHz Five-Bit Digital Attenuator (1 db LSB) Applications Transceiver transmit automatic level control or receive automatic gain control in GSM, CDMA, WCDMA, WLAN, Bluetooth,

More information

Aluminum Electrolytic Capacitors Radial Low Profile, 5 mm

Aluminum Electrolytic Capacitors Radial Low Profile, 5 mm Aluminum Electrolytic Capacitors Radial Low Profile, 5 mm 038 RSU 097 RLP 7 higher CV-values 5 mm ig. 1 longer life SMD 153 CRV QUICK REERENCE DATA DESCRIPTION VALUE Nominal case sizes (Ø D x L in mm)

More information

PIN Diode Chips Supplied on Film Frame

PIN Diode Chips Supplied on Film Frame DATA SHEET PIN Diode Chips Supplied on Film Frame Applications Switches Attenuators Features Preferred device for module applications PIN diodes supplied are 00% tested, saw cut, and mounted on film frame

More information

CLA Series: Silicon Limiter Diodes and Ceramic Hermetic Packaged Devices

CLA Series: Silicon Limiter Diodes and Ceramic Hermetic Packaged Devices DATA SHEET CLA Series: Silicon Limiter Diodes and Ceramic Hermetic Packaged Devices Applications LNA receiver protection Commercial and defense radar Features Established limiter diode process High power,

More information

An image rejection re-configurable multi-carrier 3G base-station transmitter

An image rejection re-configurable multi-carrier 3G base-station transmitter An image rejection reconigurable multicarrier 3G basestation transmitter Dimitrios Estathiou Analog Devices, 79 Triad Center Drive, Greensboro, NC 2749, USA email: dimitrios.estathiou@analog.com ABSTRACT

More information

Power MOSFET. LLC resonant. Antonino Gaito. Market & Application Development Section Manager.

Power MOSFET. LLC resonant. Antonino Gaito. Market & Application Development Section Manager. Power MOSFET C resonant Antonino Gaito Market & Application Development Section Manager antonino.gaito@st.com Outline 1. SRC - Series C tank overview 2. PRC - Parallel C tank overview 3. SRC + PRC = SPRC

More information

SKY LF: GHz Four-Bit Digital Attenuator (1 db LSB)

SKY LF: GHz Four-Bit Digital Attenuator (1 db LSB) DATA SHEET SKY12348-35LF:.1-3. GHz Four-Bit Digital Attenuator (1 LSB) Applications RF2 Cellular, 3G/4G, WiMAX, and LTE Infrastructures RF and IF systems Features Broadband operation:.1 to 3. GHz Attenuation:

More information

PHYTER 100 Base-TX Reference Clock Jitter Tolerance

PHYTER 100 Base-TX Reference Clock Jitter Tolerance PHYTER 100 Base-TX Reference Clock Jitter Tolerance 1.0 Introduction The use of a reference clock that is less stable than those directly driven from an oscillator may be required for some applications.

More information

AA104-73/-73LF: 300 khz-2.5 GHz One-Bit Digital Attenuator

AA104-73/-73LF: 300 khz-2.5 GHz One-Bit Digital Attenuator DATA SHEET AA104-73/-73LF: 300 khz-2.5 GHz One-Bit Digital Attenuator (32 ) Applications Sixth-bit value for Skyworks AA260-85 and AA101-80 digital attenuators IF and RF components for cable, GSM, PCS,

More information

Dual 4-bit static shift register

Dual 4-bit static shift register Rev. 9 21 March 2016 Product data sheet 1. General description 2. Features and benefits 3. Applications 4. Ordering information The is a dual edge-triggered 4-bit static shift register (serial-to-parallel

More information

HEF4014B. 1. General description. 2. Features and benefits. 3. Applications. 4. Ordering information. 8-bit static shift register

HEF4014B. 1. General description. 2. Features and benefits. 3. Applications. 4. Ordering information. 8-bit static shift register Rev. 9 21 March 2016 Product data sheet 1. General description 2. Features and benefits 3. Applications 4. Ordering information The is a fully synchronous edge-triggered with eight synchronous parallel

More information

SKY LF: GHz Seven-Bit Digital Attenuator with Serial and Parallel Drivers

SKY LF: GHz Seven-Bit Digital Attenuator with Serial and Parallel Drivers DATA SHEET SKY12343-364LF: 0.01 4.0 GHz Seven-Bit Digital Attenuator with Serial and Parallel Drivers Applications Cellular and 3G infrastructure WiMAX, LTE, 4G infrastructure Features Broadband operation:

More information

1.5 C Accurate Digital Temperature Sensor with SPI Interface

1.5 C Accurate Digital Temperature Sensor with SPI Interface TMP TMP SBOS7B JUNE 00 REVISED SEPTEMBER 00. C Accurate Digital Temperature Sensor with SPI Interface FEATURES DIGITAL OUTPUT: SPI-Compatible Interface RELUTION: -Bit + Sign, 0.0 C ACCURACY: ±. C from

More information

UHF Narrow Band FM Low Cost multi channel

UHF Narrow Band FM Low Cost multi channel LMT2 / LMR2 Hartcran House, 231 Kenton Lane, Harrow, Middlesex, HA3 8RP, England Tel: +44 (0) 20 8909 9595, Fax: +44 (0) 20 8909 2233, www.radiometrix.com The LMT2 transmitter and LMR2 receiver modules

More information

IEEE C802.16h-05/022r1. IEEE Broadband Wireless Access Working Group <

IEEE C802.16h-05/022r1. IEEE Broadband Wireless Access Working Group < Project IEEE 802.16 Broadband Wireless Access Working Group Title Cognitive radio concepts or 802.16h Date Submitted 2005-07-11 Source(s) Mariana Goldhamer Alvarion Tel Aviv, 21

More information

AN3258 Application note

AN3258 Application note Application note STM8AF and STM8S series HSI oscillator calibration using LIN automatic resynchronization Introduction Local interconnect network (LIN) is a widely used standard for communication between

More information

Length-Sensing OpLevs for KAGRA

Length-Sensing OpLevs for KAGRA Length-Sensing OpLevs or KAGRA Simon Zeidler Basics Length-Sensing Optical Levers are needed in order to measure the shit o mirrors along the optical path o the incident main-laser beam with time. The

More information

Sinusoidal signal. Arbitrary signal. Periodic rectangular pulse. Sampling function. Sampled sinusoidal signal. Sampled arbitrary signal

Sinusoidal signal. Arbitrary signal. Periodic rectangular pulse. Sampling function. Sampled sinusoidal signal. Sampled arbitrary signal Techniques o Physics Worksheet 4 Digital Signal Processing 1 Introduction to Digital Signal Processing The ield o digital signal processing (DSP) is concerned with the processing o signals that have been

More information

SKY LF: GHz Two-Way, 0 Degrees Power Divider

SKY LF: GHz Two-Way, 0 Degrees Power Divider DATA SHEET SKY16406-381LF: 2.2-2.8 GHz Two-Way, 0 Degrees Power Divider Applications TD-LTE systems Satellite communications 2.4 GHz ISM band Features Low insertion loss: 0.3 db @ 2.5 GHz High isolation:

More information

AN4379 Application note

AN4379 Application note Application note SPC56L-Discovery Software examples Introduction This software package includes several firmware examples for SPC56L-Discovery Kit. These ready-to-run examples are provided to help the

More information

WIEG4PRT-A Four port Wiegand to RS232 Converter.

WIEG4PRT-A Four port Wiegand to RS232 Converter. WIEG4PRT-A Four port Wiegand to RS232 Converter. Designed for embedding into products manufactured by third-parties, this Wiegand to RS232 converter is designed with 4 ports for taking up to 4 Wiegand

More information

WIE232-A Dual Wiegand to RS232 Converter.

WIE232-A Dual Wiegand to RS232 Converter. WIE232-A Dual Wiegand to RS232 Converter. Designed for embedding into products manufactured by third-parties, this Wiegand to RS232 converter is designed with 2 ports for taking up to 2 Wiegand sources

More information

SKY LF: GHz SP3T Switch, 50 Ω Terminated

SKY LF: GHz SP3T Switch, 50 Ω Terminated DATA SHEET SKY13408-465LF: 1.0 6.0 GHz SP3T Switch, 50 Ω Terminated Applications WiMAX 802.16 Dual-band WLANs (802.11 a/b/g/n) LTE/4G systems WLAN 802.11a/c 5 GHz video distribution Features 50 Ω matched

More information

Consumers are looking to wireless

Consumers are looking to wireless Phase Noise Eects on OFDM Wireless LAN Perormance This article quantiies the eects o phase noise on bit-error rate and oers guidelines or noise reduction By John R. Pelliccio, Heinz Bachmann and Bruce

More information

SKY LF: GHz SP10T Switch with GPIO Interface

SKY LF: GHz SP10T Switch with GPIO Interface PRELIMINARY DATA SHEET SKY13404-466LF: 0.4-2.7 GHz SP10T Switch with GPIO Interface Applications 2G/3G multimode cellular handsets (UMTS, CDMA2000, EDGE, GSM) Embedded data cards Features Broadband frequency

More information

A technique for noise measurement optimization with spectrum analyzers

A technique for noise measurement optimization with spectrum analyzers Preprint typeset in JINST style - HYPER VERSION A technique or noise measurement optimization with spectrum analyzers P. Carniti a,b, L. Cassina a,b, C. Gotti a,b, M. Maino a,b and G. Pessina a,b a INFN

More information

Frequency-Foldback Technique Optimizes PFC Efficiency Over The Full Load Range

Frequency-Foldback Technique Optimizes PFC Efficiency Over The Full Load Range ISSUE: October 2012 Frequency-Foldback Technique Optimizes PFC Eiciency Over The Full Load Range by Joel Turchi, ON Semiconductor, Toulouse, France Environmental concerns lead to new eiciency requirements

More information

Study Guide for the First Exam

Study Guide for the First Exam Study Guide or the First Exam Chemistry 838 Fall 005 T V Atkinson Department o Chemistry Michigan State Uniersity East Lansing, MI 4884 The leel o knowledge and detail expected or the exam is that o the

More information

( ) D. An information signal x( t) = 5cos( 1000πt) LSSB modulates a carrier with amplitude A c

( ) D. An information signal x( t) = 5cos( 1000πt) LSSB modulates a carrier with amplitude A c An inormation signal x( t) 5cos( 1000πt) LSSB modulates a carrier with amplitude A c 1. This signal is transmitted through a channel with 30 db loss. It is demodulated using a synchronous demodulator.

More information

Normal Oscillator Behavior (Device A) Figure 1. Normal Oscillator Behavior (Device A) ft = f0 1 + TC1 T T0

Normal Oscillator Behavior (Device A) Figure 1. Normal Oscillator Behavior (Device A) ft = f0 1 + TC1 T T0 TEMPERATURE-COMPENSATED OSCILLATOR EXAMPLE 1. Introduction All Silicon Labs C8051F5xx MCU devices have an internal oscillator frequency tolerance of ±0.5%, which is rated at the oscillator s average frequency.

More information

SMP LF: Surface Mount PIN Diode for High Power Switch Applications

SMP LF: Surface Mount PIN Diode for High Power Switch Applications DATA SHEET SMP1304-085LF: Surface Mount PIN Diode for High Power Switch Applications Applications Low loss, high power switches Low distortion attenuators Features Low-thermal resistance: 35 C/W Suitable

More information

RM24100A. Introduction. 1 Features. 2.4GHz 100mW RS232 / RS485 / RS422 DSSS Radio Modem (IEEE compliant) Operating Manual English 1.

RM24100A. Introduction. 1 Features. 2.4GHz 100mW RS232 / RS485 / RS422 DSSS Radio Modem (IEEE compliant) Operating Manual English 1. RM24100A 2.4GHz 100mW RS232 / RS485 / RS422 DSSS Radio Modem (IEEE 802.15.4 compliant) Operating Manual English 1.03 Introduction The RM24100A radio modem acts as a wireless serial cable replacement and

More information

SMP LF: Surface Mount PIN Diode

SMP LF: Surface Mount PIN Diode DATA SHEET SMP1345-087LF: Surface Mount PIN Diode Applications Switches Attenuators Features Low-series resistance: 2 Ω maximum @ 10 ma Low total capacitance: 0.2 pf maximum @ 5 V QFN (2 x 2 mm) package

More information

ICS553 LOW SKEW 1 TO 4 CLOCK BUFFER. Description. Features. Block Diagram DATASHEET

ICS553 LOW SKEW 1 TO 4 CLOCK BUFFER. Description. Features. Block Diagram DATASHEET DATASHEET ICS553 Description The ICS553 is a low skew, single input to four output, clock buffer. Part of IDT s ClockBlocks TM family, this is our lowest skew, small clock buffer. See the ICS552-02 for

More information

HEF4014B. 1. General description. 2. Features and benefits. 3. Applications. 4. Ordering information. 8-bit static shift register

HEF4014B. 1. General description. 2. Features and benefits. 3. Applications. 4. Ordering information. 8-bit static shift register Rev. 10 17 October 2018 Product data sheet 1. General description 2. Features and benefits 3. Applications The is a fully synchronous edge-triggered with eight synchronous parallel inputs (D0 to D7), a

More information

SMP1345 Series: Very Low Capacitance, Plastic Packaged Silicon PIN Diodes

SMP1345 Series: Very Low Capacitance, Plastic Packaged Silicon PIN Diodes DATA SHEET SMP1345 Series: Very Low Capacitance, Plastic Packaged Silicon PIN Diodes Applications High isolation LNBs, WLANs, and wireless switches Features Very low insertion loss: 0.4 db Capacitance:

More information

DRaMA: Device-specific Repetition-aided Multiple Access for Ultra-Reliable and Low-Latency Communication

DRaMA: Device-specific Repetition-aided Multiple Access for Ultra-Reliable and Low-Latency Communication DRaMA: Device-speciic Repetition-aided Multiple Access or Ultra-Reliable and Low-Latency Communication itaek Lee, Sundo im, Junseok im, and Sunghyun Choi Department o ECE and INMC, Seoul National University,

More information

(408) CLASS 2 TRANSFORMER INPUT: AC 12OV

(408) CLASS 2 TRANSFORMER INPUT: AC 12OV T74C232 Paging System Transmitter U S E R M A N UA L Transmit Receive Power 9VAC T74C232 FCC ID: M74T7400 800.437.4996 www.pager.net RS-232 Installation, Warranty and Service Information Long Range Systems

More information

New Product TO-263. Top View SUB70N03-09BP. Parameter Symbol Limit Unit. Parameter Symbol Limit Unit

New Product TO-263. Top View SUB70N03-09BP. Parameter Symbol Limit Unit. Parameter Symbol Limit Unit New Product SUP/SUB7N3-9BP N-Channel 3-V (D-S), 75 C, MOSFET PWM Optimized V (BR)DSS (V) r DS(on) ( ) (A) 3.9 @ V GS = V 7 a.3 @ V GS = 4.5 V 6 TO-22AB D TO-263 G DRAIN connected to TAB G D S Top View

More information

Is Now A Part Of. Visit for more information about MaxLinear Inc.

Is Now A Part Of. Visit  for more information about MaxLinear Inc. Is Now A Part Of Visit www.maxlinear.com for more information about MaxLinear Inc. SP483 / SP485 Low Power Half-Duplex RS-485 Transceivers FEATURES +5V Only Low Power BiCMOS Driver / Receiver Enable Slew

More information

SKY LF: 20 MHz-2.7 GHz GaAs SPDT Switch

SKY LF: 20 MHz-2.7 GHz GaAs SPDT Switch DATA SHEET SKY13270-92LF: 20 MHz-2.7 GHz GaAs SPDT Switch Applications Transmit/receive and diversity switching over 3 W Analog and digital wireless communication systems including cellular, GSM, and UMTS

More information

SKY LF: GHz SP10T Switch with GPIO Interface

SKY LF: GHz SP10T Switch with GPIO Interface DATA SHEET SKY13404-466LF: 0.4-2.7 GHz SP10T Switch with GPIO Interface Applications 2G/3G multimode cellular handsets (UMTS, CDMA2000, EDGE, GSM) Embedded data cards Features Broadband frequency range:

More information

RM24100D. Introduction. 1 Features. 2.4GHz 100mW RS232 / RS485 / RS422 DSSS Radio Modem (IEEE compliant) Operating Manual English 1.

RM24100D. Introduction. 1 Features. 2.4GHz 100mW RS232 / RS485 / RS422 DSSS Radio Modem (IEEE compliant) Operating Manual English 1. RM24100D 2.4GHz 100mW RS232 / RS485 / RS422 DSSS Radio Modem (IEEE 802.15.4 compliant) Operating Manual English 1.03 Introduction The RM24100D radio modem acts as a wireless serial cable replacement and

More information

SKY LF: 20 MHz to 6.0 GHz GaAs SPDT Switch

SKY LF: 20 MHz to 6.0 GHz GaAs SPDT Switch DATA SHEET SKY13351-378LF: 2 MHz to 6. GHz GaAs SPDT Switch Applications WLAN 82.11 a/b/g/n networks WLAN repeaters INPUT ISM band radios Low power transmit receive systems OUTPUT1 OUTPUT2 Features Positive

More information

4-bit bidirectional universal shift register

4-bit bidirectional universal shift register Rev. 3 29 November 2016 Product data sheet 1. General description The is a. The synchronous operation of the device is determined by the mode select inputs (S0, S1). In parallel load mode (S0 and S1 HIGH)

More information

AN3332 Application note

AN3332 Application note Application note Generating PWM signals using STM8S-DISCOVERY Application overview This application user manual provides a short description of how to use the Timer 2 peripheral (TIM2) to generate three

More information

4-bit bidirectional universal shift register

4-bit bidirectional universal shift register Rev. 3 29 November 2016 Product data sheet 1. General description The is a. The synchronous operation of the device is determined by the mode select inputs (S0, S1). In parallel load mode (S0 and S1 HIGH)

More information

High Resolution Pulse Generation

High Resolution Pulse Generation High Resolution Pulse Generation An Application Note for the NS9360 Processor www.digi.com 90001138 2009 Digi International Inc. All Rights Reserved. Digi, Digi International, and the Digi logo are trademarks

More information

OLS449: Radiation-Tolerant Phototransistor Hermetic Surface-Mount Optocoupler

OLS449: Radiation-Tolerant Phototransistor Hermetic Surface-Mount Optocoupler DATA SHEET OLS449: Radiation-Tolerant Phototransistor Hermetic Surface-Mount Optocoupler Features Radiation tolerant version of the 4N49U High current transfer ratio (CTR) is guaranteed: Over 55 C to +125

More information

Worst Case Modelling of Wireless Sensor Networks

Worst Case Modelling of Wireless Sensor Networks Worst Case Modelling o Wireless Sensor Networks Jens B. Schmitt disco Distributed Computer Systems Lab, University o Kaiserslautern, Germany jschmitt@inormatik.uni-kl.de 1 Abstract At the current state

More information

SV613 USB Interface Wireless Module SV613

SV613 USB Interface Wireless Module SV613 USB Interface Wireless Module SV613 1. Description SV613 is highly-integrated RF module, which adopts high performance Si4432 from Silicon Labs. It comes with USB Interface. SV613 has high sensitivity

More information

SKYA21024: 0.01 to 6.0 GHz Single Control SPDT Switch

SKYA21024: 0.01 to 6.0 GHz Single Control SPDT Switch DATA SHEET SKYA21024: 0.01 to 6.0 GHz Single Control SPDT Switch Applications Automotive WLAN 802.11 a/b/g/n/ac WLAN repeaters ISM band radios Low power transmit receive systems Automotive infotainment

More information

TI Designs: TIDA Passive Equalization For RS-485

TI Designs: TIDA Passive Equalization For RS-485 TI Designs: TIDA-00790 Passive Equalization For RS-485 TI Designs TI Designs are analog solutions created by TI s analog experts. Verified Designs offer theory, component selection, simulation, complete

More information

CLA LF: Surface Mount Limiter Diode

CLA LF: Surface Mount Limiter Diode DATA SHEET CLA4609-086LF: Surface Mount Limiter Diode Applications Low loss, high power limiters Receiver protectors Features Low thermal resistance: 25 C/W Typical threshold level: +36 dbm Low capacitance:

More information

HEF4014B-Q General description. 2. Features and benefits. 3. Applications. 8-bit static shift register

HEF4014B-Q General description. 2. Features and benefits. 3. Applications. 8-bit static shift register Rev. 1 27 February 2013 Product data sheet 1. General description The is a fully synchronous edge-triggered with eight synchronous parallel inputs (D0 to D7). It has a synchronous serial data input (DS),

More information

Chapter 6: Introduction to Digital Communication

Chapter 6: Introduction to Digital Communication 93 Chapter 6: Introduction to Digital Communication 6.1 Introduction In the context o this course, digital communications include systems where relatively high-requency analog carriers are modulated y

More information

Evaluation Board for the AAT1210 High Power DC/DC Boost Converter

Evaluation Board for the AAT1210 High Power DC/DC Boost Converter Introduction The AAT0 evaluation board provides a platform for test and evaluation of the AAT0 switching boost regulator. The evaluation board demonstrates suggested size and placement of external components

More information

SKY LF: 0.5 to 6.0 GHz SPDT Switch, 50 Ω Terminated

SKY LF: 0.5 to 6.0 GHz SPDT Switch, 50 Ω Terminated DATA SHEET SKY13370-374LF: 0.5 to 6.0 GHz SPDT Switch, 50 Ω Terminated Applications WiMAX 802.16 Dual-band WLANs (802.11 a/b/g/n) LTE/4G systems Features RF1 50 Ω 50 Ω RF2 50 Ω matched RF ports in all

More information

OLS300: Hermetic Surface-Mount High-Speed Optocoupler

OLS300: Hermetic Surface-Mount High-Speed Optocoupler DATA SHEET OLS300: Hermetic Surface-Mount High-Speed Optocoupler Features Electrical parameters guaranteed over 55 C to +125 C ambient temperature range 1500 VDC electrical isolation High-speed, 1 Mbps

More information

Reference Oscillator Crystal Requirements for MKW40 and MKW30 Device Series

Reference Oscillator Crystal Requirements for MKW40 and MKW30 Device Series Freescale Semiconductor, Inc. Application Note Document Number: AN5177 Rev. 0, 08/2015 Reference Oscillator Crystal Requirements for MKW40 and MKW30 Device Series 1 Introduction This document describes

More information

AN2979 Application note

AN2979 Application note Application note Implementing a simple ADC using the STM8L101xx comparator Introduction This application note gives a simple method for implementing an A/D converter with a minimum amount of external components:

More information

SKY LF: 0.05 to 2.7 GHz SP4T Switch with Integrated Logic Decoder

SKY LF: 0.05 to 2.7 GHz SP4T Switch with Integrated Logic Decoder DATA SHEET SKY13388-465LF:.5 to 2.7 GHz SP4T Switch with Integrated Logic Decoder Applications WCDMA/CDMA/LTE front-end/antenna switches Diversity receive antenna switches ANT Features Broadband frequency

More information

TR (draft) V0.0.0 (2004-xx)

TR (draft) V0.0.0 (2004-xx) Technical Report Transmission and Multiplexing (TM); Spectral management on metallic access networks; Part 2: Technical methods or perormance evaluations Work Item Reerence Permanent Document DTS/TM-06030

More information