Getting Precise with MSP430 Sigma-Delta ADC Peripherals Vincent Chan MSP430 Business Development Manager TI Asia

Size: px
Start display at page:

Download "Getting Precise with MSP430 Sigma-Delta ADC Peripherals Vincent Chan MSP430 Business Development Manager TI Asia"

Transcription

1 Getting Precise with MSP43 Sigma-Delta ADC Peripherals Vincent Chan MSP43 Business Development Manager TI Asia 25 Texas Instruments Inc, Slide 1

2 Agenda Sigma-Delta basics & benefits Understanding the SD16_A Choosing an MSP43 integrated ADC Lab exercise: Hands-on with the SD16_A 25 Texas Instruments Inc, Slide 2

3 Sigma-Delta Basics AMPLITUDE TIME Simple analog: 1-bit ADC 1-bit DAC Integration (Σ) & difference ( ) stages Complex digital: filter stage Over sampled input Decimation filtered output 25 Texas Instruments Inc, Slide 3

4 Σ- vs. Successive Approximation Sigma-Delta typically higher resolution 1 s ksps Σ- vs. 1 s ksps SAR Tolerance of analog step changes sample-to-sample Inherent for SAR Step changes at the input must cycle through the Σ- filter stage Σ- architecture ~9% digital: easier to integrate 25 Texas Instruments Inc, Slide 4

5 SD16 Overview SD16 Control Block F42x & FE42x Multiple channels Single external input per channel Up to 256 OSR V REF Temperature sensor Reference 1.2V f M Divider Group/Start Conversion Logic MCLK SMCLK ACLK TACLK Channel x 1MHz f M Ax Ax.1 Ax Ax Ax Ax Ax Ax PGA 2 nd Order Σ Mod SD16PREx SD16MEMx 25 Texas Instruments Inc, Slide 5

6 SD16_A Overview F42x & F2x3 Single channel Multiple input pairs V REF 1.2V Reference f M Divider Divider MCLK SMCLK ACLK TACLK Input buffer AV CC measure 3kHz to 1.1MHz f M divider A A1 A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - BUF PGA 2 nd Order Σ Mod Start Conversion Logic SD16MEM Up to 124 OSR Temp. sensor A5 25 Texas Instruments Inc, Slide 6

7 Conversion Modes Single conversion = Result written to SD16MEMx Conversion SD16SC Set in SW Auto-clear Continuous conversion Conversion Conversion Conversion Conv SD16SC Set in SW Cleared in SW Clearing SD16SC immediately stops conversion: The value in SD16MEMx can change and should be read prior to halting conversion 25 Texas Instruments Inc, Slide 7

8 SD16_A Input Design Four external input pairs Fully differential Internal channels: Temperature AV CC / 11 Offset shunt Selectable current vs. speed input buffer PGA: 1, 2, 4, 8, 16 & 32x A A1 A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - Input Channels * BUF PGA Temp. sensor 2 nd Order Σ Mod A5 SD16AEx bits for internal A IN - connection to AV SS * Buffer not in F2x3 devices to SD16 Ax- SD16AEx Port Pin Control AV SS 1 from Ax- pin to GPIO disable 25 Texas Instruments Inc, Slide 8

9 Analog Input Range What is V REF? What is the PGA setting? GAIN V +.5V Applies to all inputs & modes V FSR = V ref GAIN / 2 PGA V +.15V -.15V -.5V -.6V 25 Texas Instruments Inc, Slide 9

10 Input Select vs. Channel Select SD16_A: 1 channel, 4 external inputs per channel MSP43F42x & MSP43F2x3 SD16: 3 channels, 1 external input per channel MSP43FE42x & MSP43F42x Channels are independent & can operate in parallel Inputs are multiplexed into each channel & must be selected/sampled sequentially 25 Texas Instruments Inc, Slide 1

11 Using Preload: Multi-Channel Only Offsets decimation filter for # of f M clocks Staggers conversion results channel-to-channel Used to introduce phase delay in the conversion flow for signal compensation Example: electricity meter I & V phase compensation SD16OSRx = 32 f M cycles: SD16PRE = 8 Delayed Conversion Conversion Conversion 32 1 st Sample Ch (erroneous) 32 1 st Sample Ch 32 SD16PRE1 = Conversion Conversion Conversion Conversion Start of Conversion 1 st Sample Ch1 Time 25 Texas Instruments Inc, Slide 11

12 Input Step Response Key for mux switching Decimation filter must cycle out the delta SD16INTDLYx sets automatic settling time to 1 st conversion interrupt f M = 1.48MHz; OSR = 256 f SAMPLE = 496 ksps -> t SETTLE(MAX) ~ 732usec Asynchronous Step Conversion 25 Texas Instruments Inc, Slide 12

13 Internal Reference SD16REFON SD16REFON V REF 1.2V AV CC V REF 1.2V AV CC 1 1 Internal External AV SS Internal Only AV SS SD16VMIDON SD16VMIDON Reference Reference Internal 1.2V reference 2ppm temperature coefficient V REF Options: External ref: SD16REFON =, SD16VMIDON = Internal ref: SD16REFON = 1, SD16VMIDON = Internal ref w/ buffered output: SD16REFON = 1, SD16VMIDON = 1 For temperature (A6): use internal reference 25 Texas Instruments Inc, Slide 13

14 Internal Reference Settling Time SD16VMIDON = SD16VMIDON = 1 C VREF = 47nF Ref buffer = +1x faster reference settling Disable once settled 25 Texas Instruments Inc, Slide 14

15 Modulator Clock Selection f M comparison using D427: (continuous conversion mode, reference buffer enabled) ACLK = kHz, 256 OSR, SD16INTDLY_ ~7.8ms/conversion ~95uA: CPU in LPM3 (~19uA: CPU in LPM) SMCLK = 1.48MHz, 256 OSR, SD16INTDLY_ ~244us/conversion ~195uA: CPU in LPM ~32x Faster ~15% Greater Current 25 Texas Instruments Inc, Slide 15

16 Interrupt Vector Generator 15 x x x x Source SD16IV Contents No interrupt pending SD16MEMx overflow 2h SD16CCTL IFG 4h Reserved 6h Reserved 8h Reserved Ah Reserved Ch Reserved Eh Reserved 1h One shared interrupt vector: SD16_A IFG & overflow Fast decoding reduces code size/cpu load 25 Texas Instruments Inc, Slide 16

17 SD16IV Handling With Assembler SD16_ISR add add &SD16IV,PC ; Offset to to Jump Jump table table reti reti ; SD16IV =,, no no int. int. jmp jmp Over_ISR ; Overflow handler CH1_ISR ; Handle channel 1 interrupt Over_ISR ; Handle overflow interrupt 25 Texas Instruments Inc, Slide 17

18 SD16IV Handling With C // // SD16_ISR #pragma vector=sd16_vector interrupt void void SD16_ISR(void) { switch ( even_in_range(sd16iv, 16)) 16)) { case case 2: 2: Handle overflow; break; case case 4: 4: Channel 1 IFG; IFG; break; } } 25 Texas Instruments Inc, Slide 18

19 Using even_in_range() versus 25 Texas Instruments Inc, Slide 19

20 Selecting an MSP43 ADC f SAM PLE (ksps) reference channels res SINAD A min max (typ) IN Ref IN Ref OUT Ref I_OUT triggering gain features ADC Vss to Vref /2.5V +/-1mA SW/Timer/Cont N/A DTC ADC Vss to Vref /2.5V +/-1mA SW/Timer/Cont N/A Conv Mem SD16 3 ind ~ /-6mV V +/-1mA SW/Cont to 32x Preload SD16_A 4 mux'd ~.3 ~ /-6mV V +/-1mA SW/Cont to 32x Buffered input Voltage range to be measured? Max frequency for A IN? How much resolution? Differential inputs? Reference range? Multiple channels? Bits Sigma-Delta SAR Slope 1 1 1k 1k 1k 1M Samples per Second 25 Texas Instruments Inc, Slide 2

21 Lab Exercise 1: Measuring Voltage Configure SD16_A Measure variable voltage Convert to mv s Update LCD with result each second 25 Texas Instruments Inc, Slide 21

22 Lab 1 Software Flow SD16_A Configuration: 1x Gain Slow input buffer Channel A1+/- Internal V REF f M = ACLK, 256 OSR Single conversion 2 s complement WDT ISR (1sec) Exit LPM3 on wake Init Configure Peripherals Measure Offset Single sample A7+/- Reconfigure for A1+/- Main Enable Ref, Start Conv Enter LPM3 Calculate Voltage Update Display SD16 ISR Handle converison result/offset Disable Ref 25 Texas Instruments Inc, Slide 22

23 Lab 1 SD16_A Setup // // Add Add SD16_A SD16_A Configuration Here Here SD16CTL SD16CTL = ; SD16CCTL = = ; // // Get Get internal internal offset offset SD16INCTL = ; SD16CCTL = = ; while(!(sd16cctl & )); offset offset = SD16MEM; // // Configure for for external external potentiometer SD16INCTL = ; SD16CCTL = ; Add appropriate SD16_A configuration code Configure for single conversion from A7 Start conversion & poll IFG Reconfigure for single conversions from A1 25 Texas Instruments Inc, Slide 23

24 Lab 1 SD16_A Main // // Main Main while while (1) (1) { SD16CTL SD16CTL = = ; SD16CCTL = = ; ; _BIS_SR(LPM3_bits + GIE); GIE); Disp_Value(2, (float)result * MV_PER_LSB); } Enable internal reference Start a conversion 25 Texas Instruments Inc, Slide 24

25 Lab 1 SD16_A ISR // // Add Add SD16_A SD16_A ISR ISR Here Here #pragma #pragma vector=sd16_vector interrupt void void SD16_isr(void) { switch switch ( even_in_range(sd16iv, 4)) 4)) { case case 2: 2: break; break; case case 4: 4: result result = ; SD16CTL SD16CTL &= &= ~( ); break; break; } } Get conversion and subtract measured offset Turn off internal reference 25 Texas Instruments Inc, Slide 25

26 Lab Exercise 2: Measuring Pressure Configure SD16_A Measure pressure sensor Convert to mbar Update LCD with result each second air pressure 25 Texas Instruments Inc, Slide 26

27 Lab 2 Software Flow SD16_A Configuration: 32x Gain Medium input buffer Channel A+/- Init Configure Peripherals Measure Offset Single sample A7+/- Reconfigure for A+/- (continuous) External V REF f M = MCLK, 124 OSR Continuous conversion 2 s complement WDT ISR (1sec) Exit LPM on wake Main Enter LPM Calculate Pressure Update Display SD16 ISR Handle converison result/offset 25 Texas Instruments Inc, Slide 27

28 Lab 2 SD16_A Setup // // Add Add SD16_A SD16_A Configuration Here Here SD16CTL SD16CTL = ; SD16CCTL = = ; // // Get Get internal internal offset offset SD16INCTL = ; SD16CCTL = = ; while(!(sd16cctl & )); offset offset = SD16MEM; // // Configure for for external external potentiometer SD16INCTL = ; SD16CCTL = ; Add appropriate SD16_A configuration code Configure for single conversion from A7 Start conversion & poll IFG Reconfigure for continuous conversions from A 25 Texas Instruments Inc, Slide 28

29 SD16_A: 1 And 1 Uses 16-bits with flexible input architecture Take into account reference settling SD16INTDLYx: Is it long enough? Match buffer settings for optimum power/performance Understand f M, OSR & sampling rate relationship Match the ADC with the application requirements Not just a matter of resolution! 25 Texas Instruments Inc, Slide 29

30 Lab 1 SD16_A Setup Solution // // Add Add SD16_A SD16_A Configuration Here Here SD16CTL SD16CTL = SD16VMIDON+SD16REFON+SD16SSEL1; SD16CCTL = = SD16BUF_1+SD16DF+SD16SNGL; // // Get Get internal internal offset offset SD16INCTL = SD16INCH_7; SD16CCTL = = SD16SC; SD16SC; while(!(sd16cctl & SD16IFG)); offset offset = SD16MEM; // // Configure for for external external potentiometer SD16INCTL = SD16INCH_1; SD16CCTL = SD16BUF_1+SD16DF+SD16SNGL+SD16IE; 25 Texas Instruments Inc, Slide 3

31 Lab 1 SD16_A Main Solution // // Main Main while while (1) (1) { SD16CTL SD16CTL = = SD16VMIDON+SD16REFON; SD16CCTL = = SD16SC; SD16SC; _BIS_SR(LPM3_bits + GIE); GIE); Disp_Value(2, (float)result * MV_PER_LSB); } 25 Texas Instruments Inc, Slide 31

32 Lab 1 SD16_A ISR Solution // // Add Add SD16_A SD16_A ISR ISR Here Here #pragma #pragma vector=sd16_vector interrupt void void SD16_isr(void) { switch switch ( even_in_range(sd16iv, 4)) 4)) { case case 2: 2: break; break; case case 4: 4: result result = SD16MEM-offset; SD16CTL SD16CTL &= &= ~(SD16VMIDON+SD16REFON); break; break; } } 25 Texas Instruments Inc, Slide 32

33 Lab 2 SD16_A Setup Solution // // Add Add SD16_A SD16_A Configuration Here Here SD16CTL SD16CTL = ; ; // // This This is is the the default, default, delete delete line line SD16CCTL = = SD16BUF_2+SD16OSR_124+SD16DF+SD16SNGL; // // Get Get internal internal offset offset SD16INCTL = SD16GAIN_32+SD16INCH_7; SD16CCTL = = SD16SC; SD16SC; while(!(sd16cctl & SD16IFG)); offset offset = SD16MEM; // // Configure for for external external potentiometer SD16INCTL = SD16GAIN_32+SD16INCH_; SD16CCTL = SD16BUF_2+SD16OSR_124+SD16DF+SD16SC+SD16IE; Make sure external reference has settled before offset measurement is made! 25 Texas Instruments Inc, Slide 33

16.1 ADC ADC ADC10

16.1 ADC ADC ADC10 Chapter 27 The module is a high-performance 10-bit analog-to-digital converter. This chapter describes the operation of the module of the 4xx family. The is implemented on the MSP4340F41x2 devices. Topic

More information

Working with ADCs, OAs and the MSP430

Working with ADCs, OAs and the MSP430 Working with ADCs, OAs and the MSP430 Bonnie Baker HPA Senior Applications Engineer Texas Instruments 2006 Texas Instruments Inc, Slide 1 Agenda An Overview of the MSP430 Data Acquisition System SAR Converters

More information

MSP430 Teaching Materials

MSP430 Teaching Materials MSP430 Teaching Materials Lecture 6 Data Acquisition Texas Instruments Incorporated University of Beira Interior (PT) Pedro Dinis Gaspar, António Espírito Santo, Bruno Ribeiro, Humberto Santos University

More information

IV B.Tech. I Sem (R13) ECE : Embedded Systems : UNIT -3 1 UNIT 3

IV B.Tech. I Sem (R13) ECE : Embedded Systems : UNIT -3 1 UNIT 3 IV B.Tech. I Sem (R13) ECE : Embedded Systems : UNIT -3 1 UNIT 3 Timers of MSP430 3.1. Basic Timer1 3.2. Timer_A 3.3. Edge aligned PWM output 3.4. Measurement in Capture mode ( Time period, duration, frequency)

More information

AD9772A - Functional Block Diagram

AD9772A - Functional Block Diagram F FEATURES single 3.0 V to 3.6 V supply 14-Bit DAC Resolution 160 MPS Input Data Rate 67.5 MHz Reconstruction Passband @ 160 MPS 74 dbc FDR @ 25 MHz 2 Interpolation Filter with High- or Low-Pass Response

More information

Module 13: Interfacing ADC. Introduction ADC Programming DAC Programming Sensor Interfacing

Module 13: Interfacing ADC. Introduction ADC Programming DAC Programming Sensor Interfacing Module 13: Interfacing ADC Introduction ADC Programming DAC Programming Sensor Interfacing Introduction ADC Devices o Analog-to-digital converters (ADC) are among the most widely used devices for data

More information

ADC Resolution: Myth and Reality

ADC Resolution: Myth and Reality ADC Resolution: Myth and Reality Mitch Ferguson, Applications Engineering Manager Class ID: CC19I Renesas Electronics America Inc. Mr. Mitch Ferguson Applications Engineering Manager Specializes support

More information

The University of Texas at Arlington Lecture 10 ADC and DAC

The University of Texas at Arlington Lecture 10 ADC and DAC The University of Texas at Arlington Lecture 10 ADC and DAC CSE 3442/5442 Measuring Physical Quantities (Digital) computers use discrete values, and use these to emulate continuous values if needed. In

More information

Enabling Capacitive Touch Sensing with MSP430

Enabling Capacitive Touch Sensing with MSP430 Enabling Capacitive Touch Sensing with MSP43 Zack Albus MSP43 Applications Engineer Texas Instruments 26 Texas Instruments Inc, Slide Agenda Overview of Touch Sensing Applications System-Level Careabouts

More information

Build Your Own E-Meter. Bart Basile Mekre Mesganaw MSP430 Metrology Smart Grid BU

Build Your Own E-Meter. Bart Basile Mekre Mesganaw MSP430 Metrology Smart Grid BU Build Your Own E-Meter Bart Basile Mekre Mesganaw MSP430 Metrology Smart Grid BU 1 Agenda Introduction to Energy metering (E-metering) Basics of E-metering Power Supplies for E-metering Why choose MSP430

More information

Working with ADCs, OAs and the MSP430

Working with ADCs, OAs and the MSP430 Working with ADCs, OAs and the MSP430 Bonnie Baker HPA Senior Applications Engineer Texas Instruments 2006 Texas Instruments Inc, Slide 1 Agenda An Overview of the MSP430 Data Acquisition System SAR Converters

More information

1uW Embedded Computing Using Off-the Shelf Components for Energy Harvesting Applications

1uW Embedded Computing Using Off-the Shelf Components for Energy Harvesting Applications 1uW Embedded Computing Using Off-the Shelf Components for Energy Harvesting Applications Mark E. Buccini March 2013 03/2013 M. Buccini 1 Full Disclosure A processor guy 25+ years TI applications and marketing

More information

Redefining high resolution and low noise in Delta-Sigma ADC applications

Redefining high resolution and low noise in Delta-Sigma ADC applications Redefining high resolution and low noise in Delta-Sigma ADC applications Agenda Redefining high resolution and low noise in Delta-Sigma ADC applications How do Precision Delta-Sigma (ΔΣ) ADCs work? Introduction

More information

AD Channel, ±10 V Input Range, High Throughput, 24-Bit - ADC FEATURES FUNCTIONAL BLOCK DIAGRAM APPLICATIONS GENERAL DESCRIPTION

AD Channel, ±10 V Input Range, High Throughput, 24-Bit - ADC FEATURES FUNCTIONAL BLOCK DIAGRAM APPLICATIONS GENERAL DESCRIPTION 2-Channel, ±10 V Input Range, High Throughput, 24-Bit - ADC AD7732 FEATURES High resolution ADC 24 bits no missing codes ±0.0015% nonlinearity Optimized for fast channel switching 18-bit p-p resolution

More information

± SLAS262C OCTOBER 2000 REVISED MAY 2003

± SLAS262C OCTOBER 2000 REVISED MAY 2003 14-Bit Resolution for TLC3574/78, 12-Bit for TLC2574/2578 Maximum Throughput 200-KSPS Multiple Analog Inputs: 8 Single-Ended Channels for TLC3578/2578 4 Single-Ended Channels for TLC3574/2574 Analog Input

More information

Hello, and welcome to this presentation of the STM32 Digital Filter for Sigma-Delta modulators interface. The features of this interface, which

Hello, and welcome to this presentation of the STM32 Digital Filter for Sigma-Delta modulators interface. The features of this interface, which Hello, and welcome to this presentation of the STM32 Digital Filter for Sigma-Delta modulators interface. The features of this interface, which behaves like ADC with external analog part and configurable

More information

Analog to Digital Conversion

Analog to Digital Conversion Analog to Digital Conversion The MSP in the name of our microcontroller MSP430G2554 is abbreviation for Mixed Signal Processor. This means that our microcontroller can be used to handle both analog and

More information

SAR ADCs Feature Speed, Low Power, Small Package Size and True Simultaneous Sampling

SAR ADCs Feature Speed, Low Power, Small Package Size and True Simultaneous Sampling L DESIGN FEATURES SAR ADCs Feature Speed, Low Power, Small Package Size and True Simultaneous Sampling Introduction When it comes to quickly digitizing analog signals from a few hertz to a few megahertz,

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

Analog Digital Converter

Analog Digital Converter Analog Digital Converter - Overview Analog Digital Conversion - Operation Modes: Single Mode vs. Scan mode - Registers for Data, Control, Status - Using the ADC in Software - Handling of Interrupts Karl-Ragmar

More information

8-Channel, 24-Bit, Simultaneous Sampling ADC AD7771

8-Channel, 24-Bit, Simultaneous Sampling ADC AD7771 FEATURES 8-channel, -bit simultaneous sampling ADC Single-ended or true differential inputs PGA per channel (gains of,,, and 8) Low dc input current ± na (differential)/±8 na (single-ended) Up to 8 ksps

More information

8-Channel, 24-Bit, Simultaneous Sampling ADC AD7771

8-Channel, 24-Bit, Simultaneous Sampling ADC AD7771 Data Sheet FEATURES 8-channel, -bit simultaneous sampling ADC Single-ended or true differential inputs PGA per channel (gains of,,, and 8) Low dc input current ± na (differential)/±8 na (single-ended)

More information

Timer A (0 and 1) and PWM EE3376

Timer A (0 and 1) and PWM EE3376 Timer A (0 and 1) and PWM EE3376 General Peripheral Programming Model l l l l Each peripheral has a range of addresses in the memory map peripheral has base address (i.e. 0x00A0) each register used in

More information

Stand-Alone, 10-Channel, 10-Bit System Monitors with Internal Temperature Sensor and VDD Monitor

Stand-Alone, 10-Channel, 10-Bit System Monitors with Internal Temperature Sensor and VDD Monitor 19-2839; Rev 1; 6/10 Stand-Alone, 10-Channel, 10-Bit System Monitors General Description The are stand-alone, 10-channel (8 external, 2 internal) 10-bit system monitor ADCs with internal reference. A programmable

More information

9. Data Acquisition. Chapter 9

9. Data Acquisition. Chapter 9 Chapter 9 9. Data Acquisition Microcontrollers offer a complete signal-chain on a chip for a wide range of applications. One of the most important interfaces between the microcontroller and the real word

More information

8-Bit, high-speed, µp-compatible A/D converter with track/hold function ADC0820

8-Bit, high-speed, µp-compatible A/D converter with track/hold function ADC0820 8-Bit, high-speed, µp-compatible A/D converter with DESCRIPTION By using a half-flash conversion technique, the 8-bit CMOS A/D offers a 1.5µs conversion time while dissipating a maximum 75mW of power.

More information

Lecture 7: Analog Signals and Conversion

Lecture 7: Analog Signals and Conversion ECE342 Introduction to Embedded Systems Lecture 7: Analog Signals and Conversion Ying Tang Electrical and Computer Engineering Rowan University 1 Analog Signals Everywhere Everything is an analogy in the

More information

Fundamentals of Data Converters. DAVID KRESS Director of Technical Marketing

Fundamentals of Data Converters. DAVID KRESS Director of Technical Marketing Fundamentals of Data Converters DAVID KRESS Director of Technical Marketing 9/14/2016 Analog to Electronic Signal Processing Sensor (INPUT) Amp Converter Digital Processor Actuator (OUTPUT) Amp Converter

More information

dspic Analogue to Digital Converter

dspic Analogue to Digital Converter dspic Analogue to Digital Converter The dspic30f4012 has a 10-bit successive approximation architecture ADC on board and provides maximum sampling rate of 1 Msps. The ADC module has 6 analogue inputs which

More information

Input Drive Circuitry for SAR ADCs. Section 8

Input Drive Circuitry for SAR ADCs. Section 8 for SAR ADCs Section 8 SAR ADCs in particular have input stages that have a very dynamic behavior. Designing circuitry to drive these loads is an interesting challenge. We ve been looking at this for some

More information

TOP VIEW. Maxim Integrated Products 1

TOP VIEW. Maxim Integrated Products 1 19-1857; Rev ; 11/ EVALUATION KIT AVAILABLE General Description The low-power, 8-bit, dual-channel, analog-to-digital converters (ADCs) feature an internal track/hold (T/H) voltage reference (/), clock,

More information

8-Channel, High Throughput, 24-Bit - ADC AD7738

8-Channel, High Throughput, 24-Bit - ADC AD7738 a 8-Channel, High Throughput, 24-Bit - ADC AD7738 FEATURES High Resolution ADC 24 Bits No Missing Codes 0.0015% Nonlinearity Optimized for Fast Channel Switching 18-Bits p-p Resolution (21 Bits Effective)

More information

4 x 10 bit Free Run A/D 4 x Hi Comparator 4 x Low Comparator IRQ on Compare MX839. C-BUS Interface & Control Logic

4 x 10 bit Free Run A/D 4 x Hi Comparator 4 x Low Comparator IRQ on Compare MX839. C-BUS Interface & Control Logic DATA BULLETIN MX839 Digitally Controlled Analog I/O Processor PRELIMINARY INFORMATION Features x 4 input intelligent 10 bit A/D monitoring subsystem 4 High and 4 Low Comparators External IRQ Generator

More information

Analog Interface 8.1 OVERVIEW 8 1

Analog Interface 8.1 OVERVIEW 8 1 . OVERVIEW The ADSP-2msp5 and ADSP-2msp59 processors include an analog signal interface consisting of a 6-bit sigma-delta A/D converter, a 6- bit sigma-delta D/A converter, and a set of memory-mapped control

More information

Single-Supply, Low-Power, Serial 8-Bit ADCs

Single-Supply, Low-Power, Serial 8-Bit ADCs 19-1822; Rev 1; 2/2 Single-Supply, Low-Power, Serial 8-Bit ADCs General Description The / low-power, 8-bit, analog-todigital converters (ADCs) feature an internal track/hold (T/H), voltage reference, monitor,

More information

Sigma-Delta ADCs. Benefits and Features. General Description. Applications. Functional Diagram

Sigma-Delta ADCs. Benefits and Features. General Description. Applications. Functional Diagram EVALUATION KIT AVAILABLE MAX1415/MAX1416 General Description The MAX1415/MAX1416 low-power, 2-channel, serialoutput analog-to-digital converters (ADCs) use a sigmadelta modulator with a digital filter

More information

ELCT 912: Advanced Embedded Systems

ELCT 912: Advanced Embedded Systems ELCT 912: Advanced Embedded Systems Lecture 5: PIC Peripherals on Chip Dr. Mohamed Abd El Ghany, Department of Electronics and Electrical Engineering The PIC Family: Peripherals Different PICs have different

More information

description SCLK FS SDI EOC/INT SDO DGND DV DD CS A0 A1 A2 A3 CSTART AV DD AGND BGAP REFM REFP AGND A7 A6 A5 A4 SCLK FS SDI EOC/INT SDO DGND CSTART

description SCLK FS SDI EOC/INT SDO DGND DV DD CS A0 A1 A2 A3 CSTART AV DD AGND BGAP REFM REFP AGND A7 A6 A5 A4 SCLK FS SDI EOC/INT SDO DGND CSTART TLC3544, TLC3548 14-Bit Resolution Maximum Throughput 200 KSPS Analog Input Range 0-V to Reference Voltage Multiple Analog Inputs: 8 Channels for TLC3548 4 Channels for TLC3544 Pseudodifferential Analog

More information

5 V, 14-Bit Serial, 5 s ADC in SO-8 Package AD7894

5 V, 14-Bit Serial, 5 s ADC in SO-8 Package AD7894 a FEATURES Fast 14-Bit ADC with 5 s Conversion Time 8-Lead SOIC Package Single 5 V Supply Operation High Speed, Easy-to-Use, Serial Interface On-Chip Track/Hold Amplifier Selection of Input Ranges 10 V

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

12/31/11 Analog to Digital Converter Noise Testing Final Report Page 1 of 10

12/31/11 Analog to Digital Converter Noise Testing Final Report Page 1 of 10 12/31/11 Analog to Digital Converter Noise Testing Final Report Page 1 of 10 Introduction: My work this semester has involved testing the analog-to-digital converters on the existing Ko Brain board, used

More information

4-Channel, 1 MSPS, 8-/10-/12-Bit ADCs with Sequencer in 16-Lead TSSOP AD7904/AD7914/AD7924

4-Channel, 1 MSPS, 8-/10-/12-Bit ADCs with Sequencer in 16-Lead TSSOP AD7904/AD7914/AD7924 a 4-Channel, 1 MSPS, 8-/10-/12-Bit ADCs with Sequencer in 16-Lead TSSOP AD7904/AD7914/AD7924 FEATURES Fast Throughput Rate: 1 MSPS Specified for V DD of 2.7 V to 5.25 V Low Power: 6 mw max at 1 MSPS with

More information

Next Generation SAR ADC Simplifies Precision Measurement

Next Generation SAR ADC Simplifies Precision Measurement Next Generation SAR ADC Simplifies Precision Measurement MAITHIL PACHCHIGAR 2016 Analog Devices, Inc. All rights reserved. 1 Agenda Introduction AD400X Ease of Use System-Level Benefits Ease of Drive Internal

More information

Analog to Digital Conversion

Analog to Digital Conversion Analog to Digital Conversion Florian Erdinger Lehrstuhl für Schaltungstechnik und Simulation Technische Informatik der Uni Heidelberg VLSI Design - Mixed Mode Simulation F. Erdinger, ZITI, Uni Heidelberg

More information

MSP430 Interfacing Programs

MSP430 Interfacing Programs IV B.Tech. I Sem (R13) ECE : Embedded Systems : UNIT -5 1 MSP430 Interfacing Programs 1. Blinking LED 2. LED control using switch 3. GPIO interrupt 4. ADC & PWM application speed control of dc motor 5.

More information

Analog-to-Digital Converter (ADC) And Digital-to-Analog Converter (DAC)

Analog-to-Digital Converter (ADC) And Digital-to-Analog Converter (DAC) 1 Analog-to-Digital Converter (ADC) And Digital-to-Analog Converter (DAC) 2 1. DAC In an electronic circuit, a combination of high voltage (+5V) and low voltage (0V) is usually used to represent a binary

More information

S3C9442/C9444/F9444/C9452/C9454/F9454

S3C9442/C9444/F9444/C9452/C9454/F9454 PRODUCT OVERVIEW 1 PRODUCT OVERVIEW SAM88RCRI PRODUCT FAMILY Samsung's SAM88RCRI family of 8-bit single-chip CMOS microcontrollers offers a fast and efficient CPU, a wide range of integrated peripherals,

More information

MCP3550/1/3. Low-Power, Single-Channel 22-Bit Delta-Sigma ADCs. Description: Features: Applications: Package Types. Block Diagram

MCP3550/1/3. Low-Power, Single-Channel 22-Bit Delta-Sigma ADCs. Description: Features: Applications: Package Types. Block Diagram Low-Power, Single-Channel 22-Bit Delta-Sigma ADCs Features: 22-Bit ADC in Small 8-pin MSOP Package with Automatic Internal Offset and Gain Calibration Low-Output Noise of 2.5 µv RMS with Effective Resolution

More information

8-Channel, 1 MSPS, 12-Bit SAR ADC with Temperature Sensor AD7298

8-Channel, 1 MSPS, 12-Bit SAR ADC with Temperature Sensor AD7298 8-Channel, 1 MSPS, 12-Bit SAR ADC with Temperature Sensor AD7298 FEATURES 12-bit SAR ADC 8 single-ended inputs Channel sequencer functionality Fast throughput of 1 MSPS Analog input range: 0 V to 2.5 V

More information

2-, 4-, or 8-Channel, 16/24-Bit Buffered Σ Multi-Range ADC

2-, 4-, or 8-Channel, 16/24-Bit Buffered Σ Multi-Range ADC 2-, 4-, or 8-Channel, 16/24-Bit Buffered Σ Multi-Range ADC The following information is based on the technical data sheet: CS5521/23 DS317PP2 MAR 99 CS5522/24/28 DS265PP3 MAR 99 Please contact Cirrus Logic

More information

Hello and welcome to this Renesas Interactive Course that provides an overview of the timers found on RL78 MCUs.

Hello and welcome to this Renesas Interactive Course that provides an overview of the timers found on RL78 MCUs. Hello and welcome to this Renesas Interactive Course that provides an overview of the timers found on RL78 MCUs. 1 The purpose of this course is to provide an introduction to the RL78 timer Architecture.

More information

LC 2 MOS Signal Conditioning ADC with RTD Current Source AD7711A *

LC 2 MOS Signal Conditioning ADC with RTD Current Source AD7711A * a FEATURES Charge Balancing ADC 24 Bits No Missing Codes 0.0015% Nonlinearity 2-Channel Programmable Gain Front End Gains from 1 to 128 Differential Inputs Low-Pass Filter with Programmable Filter Cutoffs

More information

Linear Technology Chronicle

Linear Technology Chronicle Linear Technology Chronicle High Performance Analog Solutions from Linear Technology Vol. 13 No. 5 Industrial Process Control LT1790-2.5 LTC2054 REMOTE THERMOCOUPLE CH0 CH1 CH7 CH8 CH15 COM REF 16-CHANNEL

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

Energy Metering IC with SPI Interface and Active Power Pulse Output. 24-Lead SSOP HPF HPF1. Serial Control And Output Buffers HPF1

Energy Metering IC with SPI Interface and Active Power Pulse Output. 24-Lead SSOP HPF HPF1. Serial Control And Output Buffers HPF1 Energy Metering IC with SPI Interface and Active Power Pulse Output Features Supports IEC 6253 International Energy Metering Specification and legacy IEC 136/ 6136/687 Specifications Digital waveform data

More information

2-Channel, Software-Selectable, True Bipolar Input, 1 MSPS, 12-Bit Plus Sign ADC AD7322

2-Channel, Software-Selectable, True Bipolar Input, 1 MSPS, 12-Bit Plus Sign ADC AD7322 -Channel, Software-Selectable, True Bipolar Input, 1 MSPS, 1-Bit Plus Sign ADC AD73 FEATURES 1-bit plus sign SAR ADC True bipolar input ranges Software-selectable input ranges ± 1 V, ± 5 V, ±.5 V, V to

More information

MCP3909. Energy Metering IC with SPI Interface and Active Power Pulse Output. Features. Description. Package Type. Functional Block Diagram

MCP3909. Energy Metering IC with SPI Interface and Active Power Pulse Output. Features. Description. Package Type. Functional Block Diagram Energy Metering IC with SPI Interface and Active Power Pulse Output Features Supports IEC 6253 International Energy Metering Specification and legacy IEC 136/ 6136/687 Specifications Digital waveform data

More information

MCP Bit, Quad Digital-to-Analog Converter with EEPROM Memory. Features. Description. Applications

MCP Bit, Quad Digital-to-Analog Converter with EEPROM Memory. Features. Description. Applications 12-Bit, Quad Digital-to-Analog Converter with EEPROM Memory Features 12-Bit Voltage Output DAC with Four Buffered Outputs On-Board Nonvolatile Memory (EEPROM) for DAC Codes and I 2 C Address Bits Internal

More information

SPI-/I 2 C-Compatible, Temperature Sensor, 4-Channel ADC and Quad Voltage Output ADT7516/ADT7517/ADT7519

SPI-/I 2 C-Compatible, Temperature Sensor, 4-Channel ADC and Quad Voltage Output ADT7516/ADT7517/ADT7519 SPI-/I 2 C-Compatible, Temperature Sensor, 4-Channel ADC and Quad Voltage Output ADT756/ADT757/ADT759 FEATURES ADT756: four 2-bit DACs ADT757: four -bit DACs ADT759: four 8-bit DACs Buffered voltage output

More information

AD Bit, 20/40/65 MSPS 3 V Low Power A/D Converter. Preliminary Technical Data

AD Bit, 20/40/65 MSPS 3 V Low Power A/D Converter. Preliminary Technical Data FEATURES Ultra Low Power 90mW @ 0MSPS; 135mW @ 40MSPS; 190mW @ 65MSPS SNR = 66.5 dbc (to Nyquist); SFDR = 8 dbc @.4MHz Analog Input ENOB = 10.5 bits DNL=± 0.5 LSB Differential Input with 500MHz Full Power

More information

Analog to Digital Converters (ADC) Rferences. Types of AD converters Direct (voltage comparison)

Analog to Digital Converters (ADC) Rferences. Types of AD converters Direct (voltage comparison) Analog to Digital Converters (ADC) Lecture 7 Rferences U. Tietze, Ch.Schenk, Electronics Circuits Handbook for Design and Applications, Springer,2010 Advertisement materials and Application notes of: Linear

More information

24-Bit ANALOG-TO-DIGITAL CONVERTER

24-Bit ANALOG-TO-DIGITAL CONVERTER ADS1241 ADS1240 ADS1240 ADS1241 JUNE 2001 REVISED OCTOBER 2013 24-Bit ANALOG-TO-DIGITAL CONVERTER FEATURES 24 BITS NO MISSING CODES SIMULTANEOUS 50Hz AND 60Hz REJECTION ( 90dB MINIMUM) 0.0015% INL 21 BITS

More information

4 Channel 200 Ksps 12 Bit Adc With Sequencer In 16 Lead

4 Channel 200 Ksps 12 Bit Adc With Sequencer In 16 Lead We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with 4 channel 200 ksps 12

More information

Tel: Fax:

Tel: Fax: B Tel: 78.39.4700 Fax: 78.46.33 SPECIFICATIONS (T A = +5 C, V+ = +5 V, V = V or 5 V, all voltages measured with respect to digital common, unless otherwise noted) AD57J AD57K AD57S Model Min Typ Max Min

More information

SDIC XXXXXXX SD

SDIC XXXXXXX SD Meterage SOC Features High precision ADC, 18 bits effective resolution, 1 differential or 2 single-ended inputs Low noise, high input impedance preamplifier with selectable gain: 1, 12.5, 50, 100, or 200

More information

Microcontroller: Timers, ADC

Microcontroller: Timers, ADC Microcontroller: Timers, ADC Amarjeet Singh February 1, 2013 Logistics Please share the JTAG and USB cables for your assignment Lecture tomorrow by Nipun 2 Revision from last class When servicing an interrupt,

More information

8-Channel, 24-Bit, Simultaneous Sampling ADC AD7770

8-Channel, 24-Bit, Simultaneous Sampling ADC AD7770 FEATURES 8-channel, -bit simultaneous sampling analog-to-digital converter (ADC) Single-ended or true differential inputs Programmable gain amplifier (PGA) per channel (gains of,,, and 8) Low dc input

More information

Designing with STM32F3x

Designing with STM32F3x Designing with STM32F3x Course Description Designing with STM32F3x is a 3 days ST official course. The course provides all necessary theoretical and practical know-how for start developing platforms based

More information

SD bits ADC SOC. Features. Applications. Ordering Information. Description. Pin Diagram and Descriptions

SD bits ADC SOC. Features. Applications. Ordering Information. Description. Pin Diagram and Descriptions SD807 0 bits ADC SOC Features High precision ADC, ENOB=7.bits@8sps, differential or single-ended inputs Low noise, high input impedance preamplifier with selectable gain:,.5, 50, 00, or 00 8 bits RISC

More information

Complete 14-Bit CCD/CIS Signal Processor AD9822

Complete 14-Bit CCD/CIS Signal Processor AD9822 a FEATURES 14-Bit 15 MSPS A/D Converter No Missing Codes Guaranteed 3-Channel Operation Up to 15 MSPS 1-Channel Operation Up to 12.5 MSPS Correlated Double Sampling 1 6x Programmable Gain 350 mv Programmable

More information

H28 Verson 1.5 DESCRIPTION

H28 Verson 1.5 DESCRIPTION H28 Verson 1.5 16-Bit Analog-to-Digital Converter Standby Current Consumption 0.1 µa Low Supply Current Low Power Consumption Resolution 16 Bits ENOB 14 Bits Serial Data Output (I 2 C bus) DESCRIPTION

More information

PBM230 series Digital barometer

PBM230 series Digital barometer PBM230 series Digital barometer Features Supply voltage: 1.7 to 5.5V(V DD ) 1.2 to 5.5V(V DDIO ) 300 to 1100 hpa pressure range 8cm altitude resolution (RMS) 2.2ms fastest conversion time Standby current

More information

Data Converters. Lecture Fall2013 Page 1

Data Converters. Lecture Fall2013 Page 1 Data Converters Lecture Fall2013 Page 1 Lecture Fall2013 Page 2 Representing Real Numbers Limited # of Bits Many physically-based values are best represented with realnumbers as opposed to a discrete number

More information

Application Report. Bhargavi Nisarga, Kripasagar Venkat... MSP430 Applications

Application Report. Bhargavi Nisarga, Kripasagar Venkat... MSP430 Applications Application Report SLAA389 February 2008 A Robust Glass-Breakage Detector Using the MSP430 Bhargavi Nisarga, Kripasagar Venkat... MSP430 Applications ABSTRACT This application report describes the working

More information

FUNCTIONAL BLOCK DIAGRAM 8-BIT AUX DAC 8-BIT AUX DAC 10-BIT AUX DAC LATCH LATCH LATCH

FUNCTIONAL BLOCK DIAGRAM 8-BIT AUX DAC 8-BIT AUX DAC 10-BIT AUX DAC LATCH LATCH LATCH a FEATURES Single +5 V Supply Receive Channel Differential or Single-Ended Analog Inputs Auxiliary Set of Analog I & Q Inputs Two Sigma-Delta A/D Converters Choice of Two Digital FIR Filters Root-Raised-Cosine

More information

LC 2 MOS Signal Conditioning ADC AD7712

LC 2 MOS Signal Conditioning ADC AD7712 LC 2 MOS Signal Conditioning ADC AD7712 FEATURES Charge Balancing ADC 24 Bits No Missing Codes 0.0015% Nonlinearity High Level and Low Level Analog Input Channels Programmable Gain for Both Inputs Gains

More information

16-Bit ANALOG-TO-DIGITAL CONVERTER

16-Bit ANALOG-TO-DIGITAL CONVERTER 16-Bit ANALOG-TO-DIGITAL CONVERTER FEATURES 16-BIT RESOLUTION LINEARITY ERROR: ±0.003% max (KG, BG) NO MISSING CODES GUARANTEED FROM 25 C TO 85 C 17µs CONVERSION TIME (16-Bit) SERIAL AND PARALLEL OUTPUTS

More information

Application Circuits 3. 3V R2. C4 100n G PI O. 0 G PI O S e t u p d a ta G PI O. 5 G PI O M o t i o n I n t G PI O. 4 G PI O.

Application Circuits 3. 3V R2. C4 100n G PI O. 0 G PI O S e t u p d a ta G PI O. 5 G PI O M o t i o n I n t G PI O. 4 G PI O. General Description The is an ultra-low power motion detector controller integrated circuit. The device is ideally suited for battery operated wireless motion sensors that make use of an MCU for handling

More information

5 V, 12-Bit, Serial 3.8 s ADC in 8-Pin Package AD7895

5 V, 12-Bit, Serial 3.8 s ADC in 8-Pin Package AD7895 a FEATURES Fast 12-Bit ADC with 3.8 s Conversion Time 8-Pin Mini-DlP and SOIC Single 5 V Supply Operation High Speed, Easy-to-Use, Serial Interface On-Chip Track/Hold Amplifier Selection of Input Ranges

More information

Linear Integrated Circuits

Linear Integrated Circuits Linear Integrated Circuits Single Slope ADC Comparator checks input voltage with integrated reference voltage, V REF At the same time the number of clock cycles is being counted. When the integrator output

More information

MCP3909. Energy Metering IC with SPI Interface and Active Power Pulse Output. Features. Description. Package Type

MCP3909. Energy Metering IC with SPI Interface and Active Power Pulse Output. Features. Description. Package Type Energy Metering IC with SPI Interface and Active Power Pulse Output Features Supports IEC 6253 International Energy Metering Specification Digital Waveform Data Access Through SPI Interface - 16-bit Dual

More information

SPI -/I 2 C -Compatible, 10-Bit Digital Temperature Sensor and 8-Channel ADC ADT7411

SPI -/I 2 C -Compatible, 10-Bit Digital Temperature Sensor and 8-Channel ADC ADT7411 SPI -/I 2 C -Compatible, 0-Bit Digital Temperature Sensor and 8-Channel ADC ADT74 FEATURES 0-bit temperature-to-digital converter 0-bit 8-channel ADC DC input bandwidth Input range: 0 V to 2.25 V and 0

More information

AUR3840. Serial-interface, Touch screen controller. Features. Description. Applications. Package Information. Order Information

AUR3840. Serial-interface, Touch screen controller. Features. Description. Applications. Package Information. Order Information Serial-interface, Touch screen controller Features Multiplexed Analog Digitization with 12-bit Resolution Low Power operation for 2.2V TO 5.25V Built-In BandGap with Internal Buffer for 2.5V Voltage Reference

More information

Section 1. Fundamentals of DDS Technology

Section 1. Fundamentals of DDS Technology Section 1. Fundamentals of DDS Technology Overview Direct digital synthesis (DDS) is a technique for using digital data processing blocks as a means to generate a frequency- and phase-tunable output signal

More information

UNISONIC TECHNOLOGIES CO., LTD M1008 Preliminary CMOS IC

UNISONIC TECHNOLOGIES CO., LTD M1008 Preliminary CMOS IC UNISONIC TECHNOLOGIES CO, LTD M8 Preliminary CMOS IC 6-BIT CCD/CIS ANALOG SIGNAL PROCESSOR DESCRIPTION The M8 is a 6-bit CCD/CIS analog signal processor for imaging applications A 3-channel architecture

More information

3 V/5 V, 1 mw, 2-/3-Channel, 16-Bit, Sigma-Delta ADCs AD7705/AD7706

3 V/5 V, 1 mw, 2-/3-Channel, 16-Bit, Sigma-Delta ADCs AD7705/AD7706 3 V/5 V, 1 mw, 2-/3-Channel, 16-Bit, Sigma-Delta ADCs AD7705/AD7706 FEATURES AD7705: 2 fully differential input channel ADCs AD7706: 3 pseudo differential input channel ADCs 16 bits no missing codes 0.003%

More information

MARMARA UNIVERSITY CSE315 DIGITAL DESIGN LABORATORY MANUAL. EXPERIMENT 7: Analog-to-Digital Conversion. Research Assistant Müzeyyen KARAMANOĞLU

MARMARA UNIVERSITY CSE315 DIGITAL DESIGN LABORATORY MANUAL. EXPERIMENT 7: Analog-to-Digital Conversion. Research Assistant Müzeyyen KARAMANOĞLU MARMARA UNIVERSITY CSE315 DIGITAL DESIGN LABORATORY MANUAL EXPERIMENT 7: Analog-to-Digital Conversion Research Assistant Müzeyyen KARAMANOĞLU Electrical&Electronics Engineering Department Marmara University

More information

24-Bit ANALOG-TO-DIGITAL CONVERTER

24-Bit ANALOG-TO-DIGITAL CONVERTER ADS1211 ADS1211 ADS1211 ADS1210 ADS1210 ADS1210 ADS1211 JANUARY 1996 REVISED SEPTEMBER 2005 24-Bit ANALOG-TO-DIGITAL CONVERTER FEATURES DELTA-SIGMA A/D CONVERTER 23 BITS EFFECTIVE RESOLUTION AT 10Hz AND

More information

MCP V Eight-Channel Analog Front End

MCP V Eight-Channel Analog Front End 3V Eight-Channel Analog Front End MCP3914 Features: Eight Synchronous Sampling 24-bit Resolution Delta-Sigma Analog-to-Digital (A/D) Converters 94.5 db SINAD, -107 dbc Total Harmonic Distortion (THD) (up

More information

SPI-/I 2 C-Compatible, 10-Bit Digital Temperature Sensor and 8-Channel ADC ADT7411

SPI-/I 2 C-Compatible, 10-Bit Digital Temperature Sensor and 8-Channel ADC ADT7411 Data Sheet SPI-/I 2 C-Compatible, 0-Bit Digital Temperature Sensor and 8-Channel ADC ADT74 FEATURES 0-bit temperature-to-digital converter 0-bit 8-channel ADC DC input bandwidth Input range: 0 V to 2.25

More information

Module 3. Embedded Systems I/O. Version 2 EE IIT, Kharagpur 1

Module 3. Embedded Systems I/O. Version 2 EE IIT, Kharagpur 1 Module 3 Embedded Systems I/O Version 2 EE IIT, Kharagpur 1 esson 19 Analog Interfacing Version 2 EE IIT, Kharagpur 2 Instructional Objectives After going through this lesson the student would be able

More information

9-Bit, 30 MSPS ADC AD9049 REV. 0. Figure 1. Typical Connections FUNCTIONAL BLOCK DIAGRAM

9-Bit, 30 MSPS ADC AD9049 REV. 0. Figure 1. Typical Connections FUNCTIONAL BLOCK DIAGRAM a FEATURES Low Power: 00 mw On-Chip T/H, Reference Single +5 V Power Supply Operation Selectable 5 V or V Logic I/O Wide Dynamic Performance APPLICATIONS Digital Communications Professional Video Medical

More information

Low Voltage, Low Power, Factory-Calibrated 16-/24-Bit Dual - ADC AD7719 REV. A

Low Voltage, Low Power, Factory-Calibrated 16-/24-Bit Dual - ADC AD7719 REV. A a FEATURES HIGH RESOLUTION - ADCs 2 Independent ADCs (16- and 24-Bit Resolution) Factory-Calibrated (Field Calibration Not Required) Output Settles in 1 Conversion Cycle (Single Conversion Mode) Programmable

More information

10-Bit, 40 MSPS/60 MSPS A/D Converter AD9050 REV. B. Figure 1. Typical Connections FUNCTIONAL BLOCK DIAGRAM

10-Bit, 40 MSPS/60 MSPS A/D Converter AD9050 REV. B. Figure 1. Typical Connections FUNCTIONAL BLOCK DIAGRAM a FEATURES Low Power: 1 mw @ 0 MSPS, mw @ 0 MSPS On-Chip T/H, Reference Single + V Power Supply Operation Selectable V or V Logic I/O SNR: db Minimum at MHz w/0 MSPS APPLICATIONS Medical Imaging Instrumentation

More information

16-Bit, Low-Power, 2-Channel, Sigma-Delta ADC MX7705

16-Bit, Low-Power, 2-Channel, Sigma-Delta ADC MX7705 General Description The MX7705 low-power, 2-channel, serial-output analog-to-digital converter (ADC) includes a sigma-delta modulator with a digital filter to achieve 16-bit resolution with no missing

More information

Oversampled ADC and PGA Combine to Provide 127-dB Dynamic Range

Oversampled ADC and PGA Combine to Provide 127-dB Dynamic Range Oversampled ADC and PGA Combine to Provide 127-dB Dynamic Range By Colm Slattery and Mick McCarthy Introduction The need to measure signals with a wide dynamic range is quite common in the electronics

More information

What? nanowatt? Acquiring sensor data in wireless products with nanowatts of power consumption

What? nanowatt? Acquiring sensor data in wireless products with nanowatts of power consumption 11001101011010 10101010101010 10101010111010 01010011101101 010101 What? nanowatt? Acquiring sensor data in wireless products with nanowatts of power consumption Peggy Liska Texas Instruments Product Marketing

More information

Enabling Single Touch Capacitive Sensing with MSP430

Enabling Single Touch Capacitive Sensing with MSP430 Enabling Single Touch Capacitive Sensing with MSP430 Zack Albus MSP430 Applications Engineer Texas Instruments 2006 Texas Instruments Inc, Slide 1 Agenda Overview of Single Touch Applications System-Level

More information

SPI /I 2 C Compatible, 10-Bit Digital Temperature Sensor and 8-Channel ADC ADT7411 *

SPI /I 2 C Compatible, 10-Bit Digital Temperature Sensor and 8-Channel ADC ADT7411 * SPI /I 2 C Compatible, 10-Bit Digital Temperature Sensor and 8-Channel ADC ADT7411 * FEATURES 10-bit temperature-to-digital converter 10-bit 8-channel ADC DC input bandwidth Input range: 0 V to 2.25 V,

More information

Ultralow Power, UART, 1-Phase Power Measurement IC

Ultralow Power, UART, 1-Phase Power Measurement IC V9260 Ultralow Power, UART, 1-Phase Power Measurement IC V9260 is a multifunction, ultralow power, single-phase power measurement IC with UART serial interface. Features - 3.3V power supply: 2.8V to 3.6V.

More information