dspic Analogue to Digital Converter

Size: px
Start display at page:

Download "dspic Analogue to Digital Converter"

Transcription

1 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 are multiplexed into four sample and hold amplifiers. The output of the sample and hold is the input into the converters which generates the result. The analogue reference votages are software selectable to either the device supply voltage(av DD /AV SS ) or the voltage level on (V REF+ /V REF- ) pins. some of ADC types a ) ramp or stair case converter End of Conversion V in + - Gated Cock Clock Start of Conversion N-bit Counter B0(LSB) B1 B N-1 (MSB) DAC V REF b ) Successive Approximation Ring Counter Clock Start of Conversion V in S/H + - Control logic & SAR End of Conversion B0(LSB) B1 B N-1 (MSB) DAC V REF c) Parrallel(Flash) ADC : Very fast and requires 2 N comparators. d) Single Slope and Double Slope ADC:Uses a capacitor and a comparator to measure charging (single) and discharging(double) time. ENG721-S2 Mixed Signal Processing : Hassan Parchizadeh Page 1

2 Scaling Circuit Suppose that a transducer output voltage ranges from 0 V to 200 mv and the ADC on the dspic is set to read voltages in the range of 0 V to 5 V. If the ADC is connected to the transducer directly, then the ADC range from 0.2 V to 5 V is not being used and on top that with the resolution of 5 V /2 10 just about 5 mv, we can have about 40 different readings. To improve on this we can either reduce the reference voltage or use a scaling circuit which also takes care of the impedence of the transducer. Example : The output of a transducer is in the range of 0 to 250 mv. Design an appropriate scaling circuit to increase this range to 0 to 5 volts for the dspic ADC. (1 + R f /R i ) =5 V / 250 mv = 20 therefore R f /R i = 19 Choose R i = 1 KΩ and R f = 19 KΩ Volatge Translation Circuit( level shifting and scaling ) Some transducer output voltage ranges could be in the range of V low to V high where V low can even be negative. The accuracy of the ADC can be improved by using circuits that shift and scale the transducer output to the full range of ADC. Before introducing this circuit, we look at the individual circuit which make this circuit up. Summer Ciruit ENG721-S2 Mixed Signal Processing : Hassan Parchizadeh Page 2

3 Inverter Ciruit And the final circuit Example : The output of a transducer is in the range of -2 to +1V. Design an appropriate level shifting and scaling circuit to increase this range to 0 to 5 volts for the dspic ADC. V adc = (R f /R 1 )V Sensor - (R f /R 2 )V Ref When V adc = 0 V = (R f /R 1 )(-2) - (R f /R 2 ) )( -5 V ) gives R 2 = 2.5R 1 Let R 1 =1 KΩ, and R 2 =2.5 KΩ, When V adc = 5 V = (R f /R 1 )(1) - (R f /R 2 )V Ref Choosing V Ref = -5 V, R= 1 KΩ, 5 V = (R f /1 KΩ)(1) - (R f /2.5 KΩ)( -5 V ) gives R f = 1.67 KΩ ENG721-S2 Mixed Signal Processing : Hassan Parchizadeh Page 3

4 See dspic 10-bit ADCBlock Diagram these in data sheet. ADC Result Buffer The module contains a buffer to hold the results of the ADC. The buffer is a 16- word, dual port, read-only, 10-bits wide and is called ADCBUF0..ADCBUFF. This buffer can not be modified by user software and only holds the results of the ADC conversions. Control Registers The AD module has six Control and Status registers. These are (CHannel Select register) Sampling and Conversion time Diagram below shows the basic conversion sequence. ENG721-S2 Mixed Signal Processing : Hassan Parchizadeh Page 4

5 A sampling of the analogue voltage is performed by sample and hold amplifiers which are called S/H channels. The 10-bit A/D converter has four S/H channels, called CH0-CH3. The sampling time is the time taken to connect S/H amplifier to the analogue input pin. The conversion time is the time required for the A/D converter to convert the S/H amplifier voltage. A/D converter requires one A/D clock cycle(t AD ) to convert each bit of the result plus one additional clock cycle. A total of 12 T AD cycles are required to perform the complete conversion. Selecting the A/D Conversion Clock The A/D converter has a maximum rate at which conversion may be completed. The A/D conversion requires 12 T AD. The A/D clock is derived from the device clock source. The period of A/D conversion is software selectable using ADCON3<5:0>(ADCS<>5:0) which gives 64 possibile options for T AD. TCY ( ADCS 1) 2TAD TAD... or... ADCS 1 2 TCY For correct A/D conversion, the A/D conversion clock (T AD ) must be selected to ensure a minimum T AD time of ns. A/D sampling requirements For proper functioning of the A/D converter the total sampling time should take into acount the sample/hold amplifier settling time, holding capacitor charge time, and temperature. The analogue input model of the 10-bit A/D converter is shown below:- ENG721-S2 Mixed Signal Processing : Hassan Parchizadeh Page 5

6 For the A/D converter to meet its specified accuracy, the charge holding capacitor (C HOLD ) must be allowed to fully charge to the voltage level on the analogue input pin. The source impedance (R S ), the interconnect impedance (R IC ) and internal sampling switch (R SS ) impedance combine to directly affect the time required to charge the capacitor C HOLD. Furthermore, the sampling switch impedance (R SS ) varies with the device supply voltage V DD. To avoid exceeding the limit of the sampling time and to minimize the effects of pin leakage currents on the accuracy of the A/D converter, the maximum recomended source impedance (R S ) is 2.5kΩ. Reading the A/D result Buffer The RAM is 10-bit wide and the results of A/D converter is formatted automatically to one of the four selectable formats. The bits ADCON1<9:8> (FORM<1:0>) select the format. (signed integer uses 2 s complement) ENG721-S2 Mixed Signal Processing : Hassan Parchizadeh Page 6

7 Problem : Using above formats, determine the unsigned/signed integer and fraction value of (i) 01,1001,0011 Ans[403,403, , (ii) 11,0011,1000 Ans[824,-200, , ] Example : Writr a C program to Read channel 0 and put the results to MCP4921 dac. /* * File: talkthrough_mainxc16.c * Author: parchizh * * Created on 02 December 2014, 17:03 */ #include "p30f4012.h" _FOSC(CSW_FSCM_OFF & XT_PLL16); /* Set up for Crystal */ _FWDT(WDT_OFF); /* Turn off the Watch-Dog Timer. */ /* Enable MCLR reset pin and turn off the power-up timers. */ _FBORPOR(PBOR_OFF & MCLR_EN); _FGS(CODE_PROT_OFF); /* Disable Code Protection */ /* Global Variables and Functions */ #define cs PORTDbits.RD0 #define DT 90 void main(void){ ENG721-S2 Mixed Signal Processing : Hassan Parchizadeh Page 7

8 int i; // seting up external MCP4921 DAC SPI1CON = 0x0526; SPI1STAT = 0x8000; TRISF = 0x04; TRISE = 0xFEFF; TRISD = 0xFFFE; // SPI master, PPRE=1:4,SPRE=1:7,Mode=16,0->1 // SPI enable, clear SPIROV // RF2(SDI1) input, RF3(SD01) output // RE8(SCK1) output // RD0 (cs) output // seting up internal ADC TRISB = 0xFFFF; // Port B is input ADPCFG = 0xFFFE; //1st channel is sampled and coverted ADCON1 = 0x0004; // ADC off, output_format=integer,asmp =0 // Manual start of convesion // Automatic start of sampling after coversion ADCHS = 0x0000; // Connect RB0 on AN0 as CH0 input ADCSSL = 0; // No scan ADCON3 = 0x1003; // ADCS=3 (min TAD for 10MHz is 3*TCY=300ns) ADCON2 = 0; // AD Vref are AVdd and AVss ADCON1bits.ADON = 1; // ADC on } while(1){ ADCON1bits.SAMP = 0; while(adcon1bits.samp == 0) ; cs = 0; for(i=0;i<dt;i++){} SPI1BUF = 0x7000 ADCBUF0; for(i=0;i<dt;i++){} cs = 1; } // Clear SAMP bit (trigger conversion) // Wait for DONE bit in ADCON1 // Tcssr time required for CS fall to 1st rising clock // Output result to the DAC dspic30f4012 ADC tutorial 1. Design a circuit that can scale the voltage from the range of 0 mv to +100 mv to the range of 0 V to +5 V. 2. Design a circuit that can shift and scale from the range of 2 V to 2.5 V to the range of 0 V to 5 V. 3. Design a circuit that can shift and scale from the range of -100 mv to +100 mv to the range of 0 V to 5 V the range of. 4. The microchip temperature sensor TC1047A is connected to the AN0 of the dspic30f4012 through an appropriate scaling circuit. The TC1047A measures from -40 o C to 125 o C and produces an output of 10 mv / o C and it s output is 100 mv at -40 o C. Design the scaling cicuit and write an instruction sequence to read AN0. 5. Suppose that there is a 10-bit A/D converter with Vref- = 0 V and Vref+ = 5 V. ENG721-S2 Mixed Signal Processing : Hassan Parchizadeh Page 8

9 Find the corresponding values for A/D conversion results of 50,100,500, 800 and Repeat Q5 for Vref- = 1 V and Vref+ = 2.3 V. 7. It is required to have a resolution of 0.4 mv for an application which the sensors maximum output is 460 mv. How would you configure the dspic30f4012 to achieve this requirement? If external hardaware is used, show how it is connected to the dspic30f4012. Finally Write the instruction(s) sequence to configure the ADC module. 8. Write an instruction sequence to configure A/D converter of the dspic30f4012 with the following features: i ii iii Scan 1,2 and 5 inputs Interrupt after capturing two samples each (6 samples) Data to be converted over the range Vref- to Vref+ 9. Write an instruction sequence to configure A/D converter of the dspic30f4012 for an application that requires to sample first AN0 and then AN1 channels. AN0 and AN1 inputs are to be referenced to Vref- and the ADC modules to generate an interrupt after 1 sample of each channel. The conversions are to be made over the full input range of AVss and AVdd. 10. What value should be placed into ADCS <5:0> bit of the ADCON3 to give an ADC conversion T AD of 100nS, assuming dspic30f4012 is runnig at 120 MHz. (note : minimum T AD is ns) 11. For Q10, what is the total converstion time? 12. For Q11, what is the maximm sampling frequency? 13. For an application using dspic30f4012 ADC, It is required to sample 6 channels at 8 Ksps per channel. If the dspic is runing at 120 MHz, what is the T AD value and what is the best that could be placed into ADCS<5:0> to achieve this. ENG721-S2 Mixed Signal Processing : Hassan Parchizadeh Page 9

Section bit A/D Converter

Section bit A/D Converter Section. 12-bit A/D Converter HIGHLIGHTS This section of the manual contains the following major topics:.1 Introduction... -2.2 Control Registers... -4.3 A/D Result Buffer... -4.4 A/D Terminology and Conversion

More information

Using a PIC for Analog to Digital Conversion

Using a PIC for Analog to Digital Conversion Using a PIC for Analog to Digital Conversion Luke LaPointe November 12, 2009 Executive Summary: Analog to Digital Conversion or ADC is mandatory when dealing with analog signals that must be stored and

More information

Section Bit A/D Converter with Threshold Detect

Section Bit A/D Converter with Threshold Detect 51 Section 51. 12-Bit A/D Converter with Threshold Detect 12-Bit A/D Converter HIGHLIGHTS This section of the manual contains the following major topics: 51.1 Introduction... 51-2 51.2 A/D Terminology

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

Dedan Kimathi University of technology. Department of Electrical and Electronic Engineering. EEE2406: Instrumentation. Lab 2

Dedan Kimathi University of technology. Department of Electrical and Electronic Engineering. EEE2406: Instrumentation. Lab 2 Dedan Kimathi University of technology Department of Electrical and Electronic Engineering EEE2406: Instrumentation Lab 2 Title: Analogue to Digital Conversion October 2, 2015 1 Analogue to Digital Conversion

More information

Charge Time Measurement Unit (CTMU) and CTMU Operation with Threshold Detect

Charge Time Measurement Unit (CTMU) and CTMU Operation with Threshold Detect Charge Time Measurement Unit (CTMU) and CTMU Operation with Threshold Detect HIGHLIGHTS This section of the manual contains the following major topics: 1.0 Introduction... 2 2.0 Register Maps... 4 3.0

More information

ANALOG TO DIGITAL (ADC) and DIGITAL TO ANALOG CONVERTERS (DAC)

ANALOG TO DIGITAL (ADC) and DIGITAL TO ANALOG CONVERTERS (DAC) COURSE / CODE DIGITAL SYSTEM FUNDAMENTALS (ECE421) DIGITAL ELECTRONICS FUNDAMENTAL (ECE422) ANALOG TO DIGITAL (ADC) and DIGITAL TO ANALOG CONVERTERS (DAC) Connecting digital circuitry to sensor devices

More information

Microcomputers. Digital Signal Processing

Microcomputers. Digital Signal Processing Microcomputers Analog-to-Digital and Digital-to-Analog Conversion Lecture 7-1 Digital Signal Processing Analog-to-Digital Converter (ADC) converts an input analog value to an output digital representation.

More information

ELG3336: Converters Analog to Digital Converters (ADCs) Digital to Analog Converters (DACs)

ELG3336: Converters Analog to Digital Converters (ADCs) Digital to Analog Converters (DACs) ELG3336: Converters Analog to Digital Converters (ADCs) Digital to Analog Converters (DACs) Digital Output Dout 111 110 101 100 011 010 001 000 ΔV, V LSB V ref 8 V FSR 4 V 8 ref 7 V 8 ref Analog Input

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

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

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

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

Section 22. Basic 8-bit A/D Converter

Section 22. Basic 8-bit A/D Converter M Section 22. A/D Converter HIGHLIGHTS This section of the manual contains the following major topics: 22.1 Introduction...22-2 22.2 Control Registers...22-3 22.3 A/D Acquisition Requirements...22-6 22.4

More information

Real Time Embedded Systems. Lecture 1 January 17, 2012

Real Time Embedded Systems.  Lecture 1 January 17, 2012 Analog Real Time Embedded Systems www.atomicrhubarb.com/embedded Lecture 1 January 17, 2012 Topic Section Topic Where in the books Catsoulis chapter/page Simon chapter/page Zilog UM197 (ZNEO Z16F Series

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

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

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

Section 34. Comparator

Section 34. Comparator Section 34. HIGHLIGHTS This section of the manual contains the following major topics: 34.1 Introduction... 34-2 34.2 Registers... 34-3 34.3 Operation... 34-6 34.4 Configuration... 34-7 34.5 Interrupts...

More information

ELG4139: Converters Analog to Digital Converters (ADCs) Digital to Analog Converters (DACs)

ELG4139: Converters Analog to Digital Converters (ADCs) Digital to Analog Converters (DACs) ELG4139: Converters Analog to Digital Converters (ADCs) Digital to Analog Converters (DACs) Digital Output Dout 111 110 101 100 011 010 001 000 ΔV, V LSB V ref 8 V FS 4 V 8 ref 7 V 8 ref Analog Input V

More information

EXAMINATION PAPER EMBEDDED SYSTEMS 6EJ005 UNIVERSITY OF DERBY. School of Computing and Technology DATE: SUMMER 2003 TIME ALLOWED: 2 HOURS

EXAMINATION PAPER EMBEDDED SYSTEMS 6EJ005 UNIVERSITY OF DERBY. School of Computing and Technology DATE: SUMMER 2003 TIME ALLOWED: 2 HOURS BSc/BSc (HONS) MUSIC TECHNOLOGY AND AUDIO SYSTEM DESIGN BSc/BSc (HONS) LIVE PERFORMANCE TECHNOLOGY BSc/BSc (HONS) ELECTRICAL AND ELECTRONIC ENGINEERING DATE: SUMMER 2003 TIME ALLOWED: 2 HOURS Instructions

More information

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

EEE3410 Microcontroller Applications Department of Electrical Engineering. Lecture 10. Analogue Interfacing. Vocational Training Council, Hong Kong.

EEE3410 Microcontroller Applications Department of Electrical Engineering. Lecture 10. Analogue Interfacing. Vocational Training Council, Hong Kong. Department of Electrical Engineering Lecture 10 Analogue Interfacing 1 In this Lecture. Interface 8051 with the following Input/Output Devices Transducer/Sensors Analogue-to-Digital Conversion (ADC) Digital-to-Analogue

More information

LM12L Bit + Sign Data Acquisition System with Self-Calibration

LM12L Bit + Sign Data Acquisition System with Self-Calibration LM12L458 12-Bit + Sign Data Acquisition System with Self-Calibration General Description The LM12L458 is a highly integrated 3.3V Data Acquisition System. It combines a fully-differential self-calibrating

More information

Analog to Digital Conversion

Analog to Digital Conversion Analog to Digital Conversion 02534567998 6 4 2 3 4 5 6 ANALOG to DIGITAL CONVERSION Analog variation (Continuous, smooth variation) Digitized Variation (Discrete set of points) N2 N1 Digitization applied

More information

ADC Bit High-Speed µp-compatible A/D Converter with Track/Hold Function

ADC Bit High-Speed µp-compatible A/D Converter with Track/Hold Function 10-Bit High-Speed µp-compatible A/D Converter with Track/Hold Function General Description Using a modified half-flash conversion technique, the 10-bit ADC1061 CMOS analog-to-digital converter offers very

More information

MICROPROCESSORS A (17.383) Fall Lecture Outline

MICROPROCESSORS A (17.383) Fall Lecture Outline MICROPROCESSORS A (17.383) Fall 2010 Lecture Outline Class # 07 October 26, 2010 Dohn Bowden 1 Today s Lecture Syllabus review Microcontroller Hardware and/or Interface Finish Analog to Digital Conversion

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

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

± 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

2.7 V to 5.5 V, 400 ksps 8-/10-Bit Sampling ADC AD7813

2.7 V to 5.5 V, 400 ksps 8-/10-Bit Sampling ADC AD7813 a FEATURES 8-/10-Bit ADC with 2.3 s Conversion Time On-Chip Track and Hold Operating Supply Range: 2.7 V to 5.5 V Specifications at 2.7 V 3.6 V and 5 V 10% 8-Bit Parallel Interface 8-Bit + 2-Bit Read Power

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

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

8-Bit A/D Converter AD673 REV. A FUNCTIONAL BLOCK DIAGRAM

8-Bit A/D Converter AD673 REV. A FUNCTIONAL BLOCK DIAGRAM a FEATURES Complete 8-Bit A/D Converter with Reference, Clock and Comparator 30 s Maximum Conversion Time Full 8- or 16-Bit Microprocessor Bus Interface Unipolar and Bipolar Inputs No Missing Codes Over

More information

M-991 Call Progress Tone Generator

M-991 Call Progress Tone Generator Call Progress Tone Generator Generates standard call progress tones Digital input control Linear (analog) output Power output capable of driving standard line 14-pin DIP and 16-pin SOIC package types Single

More information

CHAPTER ELEVEN - Interfacing With the Analog World

CHAPTER ELEVEN - Interfacing With the Analog World CHAPTER ELEVEN - Interfacing With the Analog World 11.1 (a) Analog output = (K) x (digital input) (b) Smallest change that can occur in the analog output as a result of a change in the digital input. (c)

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

I hope you have completed Part 2 of the Experiment and is ready for Part 3.

I hope you have completed Part 2 of the Experiment and is ready for Part 3. I hope you have completed Part 2 of the Experiment and is ready for Part 3. In part 3, you are going to use the FPGA to interface with the external world through a DAC and a ADC on the add-on card. You

More information

ML ML Bit A/D Converters With Serial Interface

ML ML Bit A/D Converters With Serial Interface Silicon-Gate CMOS SEMICONDUCTOR TECHNICAL DATA ML145040 ML145041 8-Bit A/D Converters With Serial Interface Legacy Device: Motorola MC145040, MC145041 The ML145040 and ML145041 are low-cost 8-bit A/D Converters

More information

6.111 Lecture # 15. Operational Amplifiers. Uses of Op Amps

6.111 Lecture # 15. Operational Amplifiers. Uses of Op Amps 6.111 Lecture # 15 Operational Amplifiers Parameter Ideal '741 '357 Int Gain A Infinity 200,000/f(Hz) 20x10^6/f(Hz) Uses of Op Amps Analog uses employ negative feedback to drive + input to (nearly) the

More information

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

Getting Precise with MSP430 Sigma-Delta ADC Peripherals Vincent Chan MSP430 Business Development Manager TI Asia Getting Precise with MSP43 Sigma-Delta ADC Peripherals Vincent Chan MSP43 Business Development Manager TI Asia vince-chan@ti.com 25 Texas Instruments Inc, Slide 1 Agenda Sigma-Delta basics & benefits Understanding

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

NJ88C Frequency Synthesiser with non-resettable counters

NJ88C Frequency Synthesiser with non-resettable counters NJ88C Frequency Synthesiser with non-resettable counters DS8 -. The NJ88C is a synthesiser circuit fabricated on the GPS CMOS process and is capable of achieving high sideband attenuation and low noise

More information

Interfacing to Analog World Sensor Interfacing

Interfacing to Analog World Sensor Interfacing Interfacing to Analog World Sensor Interfacing Introduction to Analog to digital Conversion Why Analog to Digital? Basics of A/D Conversion. A/D converter inside PIC16F887 Related Problems Prepared By-

More information

Chapter 2 Signal Conditioning, Propagation, and Conversion

Chapter 2 Signal Conditioning, Propagation, and Conversion 09/0 PHY 4330 Instrumentation I Chapter Signal Conditioning, Propagation, and Conversion. Amplification (Review of Op-amps) Reference: D. A. Bell, Operational Amplifiers Applications, Troubleshooting,

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

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

Lecture 5 ECEN 4517/5517

Lecture 5 ECEN 4517/5517 Lecture 5 ECEN 4517/5517 Experiment 3 Buck converter Battery charge controller Peak power tracker 1 Due dates Next week: Exp. 3 part 2 prelab assignment: MPPT algorithm Late assignments will not be accepted.

More information

Lecture 6: Digital/Analog Techniques

Lecture 6: Digital/Analog Techniques Lecture 6: Digital/Analog Techniques The electronics signals that we ve looked at so far have been analog that means the information is continuous. A voltage of 5.3V represents different information that

More information

Section 45. High-Speed Analog Comparator

Section 45. High-Speed Analog Comparator Section 45. High-Speed Analog Comparator HIGHLIGHTS This section of the manual contains the following major topics: 45.1 Introduction... 45-2 45.2 Features Overview... 45-2 45.3 Module Description... 45-3

More information

6-Bit A/D converter (parallel outputs)

6-Bit A/D converter (parallel outputs) DESCRIPTION The is a low cost, complete successive-approximation analog-to-digital (A/D) converter, fabricated using Bipolar/I L technology. With an external reference voltage, the will accept input voltages

More information

WebSeminar: Sept. 24, 2003

WebSeminar: Sept. 24, 2003 The New Digitally Controlled Programmable Gain Amplifier (PGA) 2003 Microchip Technology Incorporated. All Rights Reserved. MCP6S21/2/6/8 The New Digitally Controlled Amplifier (PGA) 1 The New Digitally

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

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

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

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

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

CHAPTER 6 DIGITAL INSTRUMENTS

CHAPTER 6 DIGITAL INSTRUMENTS CHAPTER 6 DIGITAL INSTRUMENTS 1 LECTURE CONTENTS 6.1 Logic Gates 6.2 Digital Instruments 6.3 Analog to Digital Converter 6.4 Electronic Counter 6.6 Digital Multimeters 2 6.1 Logic Gates 3 AND Gate The

More information

12-Bit, Low-Power, Dual, Voltage-Output DAC with Serial Interface

12-Bit, Low-Power, Dual, Voltage-Output DAC with Serial Interface 19-2124; Rev 2; 7/3 12-Bit, Low-Power, Dual, Voltage-Output General Description The dual,12-bit, low-power, buffered voltageoutput, digital-to-analog converter (DAC) is packaged in a space-saving 8-pin

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

ADC Parameters. ECE/CS 5780/6780: Embedded System Design. Common Encoding Schemes. Two-Bit Flash ADC. Sixteen-Bit Dual Slope ADC

ADC Parameters. ECE/CS 5780/6780: Embedded System Design. Common Encoding Schemes. Two-Bit Flash ADC. Sixteen-Bit Dual Slope ADC ADC Parameters ECE/CS 5780/6780: Embedded System Design Chris J. Myers Lecture 19: Analog-to-Digital Conversion Precision is number of distinguishable ADC inputs. Range is maximum and minimum ADC inputs.

More information

Technical Brief FAQ (FREQUENCLY ASKED QUESTIONS) For further information, please contact Crystal Semiconductor at (512) or 1 (800)

Technical Brief FAQ (FREQUENCLY ASKED QUESTIONS) For further information, please contact Crystal Semiconductor at (512) or 1 (800) Technical Brief FAQ (FREQUENCLY ASKED QUESTIONS) 1) Do you have a four channel part? Not at this time, but we have plans to do a multichannel product Q4 97. We also have 4 digital output lines which can

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

ADC0808/ADC Bit µp Compatible A/D Converters with 8-Channel Multiplexer

ADC0808/ADC Bit µp Compatible A/D Converters with 8-Channel Multiplexer ADC0808/ADC0809 8-Bit µp Compatible A/D Converters with 8-Channel Multiplexer General Description The ADC0808, ADC0809 data acquisition component is a monolithic CMOS device with an 8-bit analog-to-digital

More information

AN3137 Application note

AN3137 Application note Application note Analog-to-digital converter on STM8L and STM8AL devices: description and precision improvement techniques Introduction This application note describes the 12-bit analog-to-digital converter

More information

2.7 V to 5.5 V, 350 ksps, 10-Bit 4-/8-Channel Sampling ADCs AD7811/AD7812

2.7 V to 5.5 V, 350 ksps, 10-Bit 4-/8-Channel Sampling ADCs AD7811/AD7812 a FEATURES 10-Bit ADC with 2.3 s Conversion Time The AD7811 has Four Single-Ended Inputs that Can Be Configured as Three Pseudo Differential Inputs with Respect to a Common, or as Two Independent Pseudo

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

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

ECE2049: Embedded Computing in Engineering Design C Term Spring Lecture #14: Using the ADC12 Analog-to-Digital Converter

ECE2049: Embedded Computing in Engineering Design C Term Spring Lecture #14: Using the ADC12 Analog-to-Digital Converter ECE2049: Embedded Computing in Engineering Design C Term Spring 2018 Lecture #14: Using the ADC12 Analog-to-Digital Converter Reading for Today: Davies 9.2-3, 9.7, MSP430 User's Guide Ch 28 Reading for

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

INL PLOT REFIN DAC AMPLIFIER DAC REGISTER INPUT CONTROL LOGIC, REGISTERS AND LATCHES

INL PLOT REFIN DAC AMPLIFIER DAC REGISTER INPUT CONTROL LOGIC, REGISTERS AND LATCHES ICm ictm IC MICROSYSTEMS FEATURES 12-Bit 1.2v Low Power Single DAC With Serial Interface and Voltage Output DNL PLOT 12-Bit 1.2v Single DAC in 8 Lead TSSOP Package Ultra-Low Power Consumption Guaranteed

More information

10-Bit, Low-Power, Rail-to-Rail Voltage-Output Serial DAC in SOT23

10-Bit, Low-Power, Rail-to-Rail Voltage-Output Serial DAC in SOT23 19-195; Rev 1; 1/4 1-Bit, Low-Power, Rail-to-Rail General Description The is a small footprint, low-power, 1-bit digital-to-analog converter (DAC) that operates from a single +.7V to +5.5V supply. The

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

IES Digital Mock Test

IES Digital Mock Test . The circuit given below work as IES Digital Mock Test - 4 Logic A B C x y z (a) Binary to Gray code converter (c) Binary to ECESS- converter (b) Gray code to Binary converter (d) ECESS- To Gray code

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

SCLK 4 CS 1. Maxim Integrated Products 1

SCLK 4 CS 1. Maxim Integrated Products 1 19-172; Rev ; 4/ Dual, 8-Bit, Voltage-Output General Description The contains two 8-bit, buffered, voltage-output digital-to-analog converters (DAC A and DAC B) in a small 8-pin SOT23 package. Both DAC

More information

AC Induction Motor (ACIM) Control using a Digital Signal Controller (DSC)

AC Induction Motor (ACIM) Control using a Digital Signal Controller (DSC) Research Journal of Applied Sciences, Engineering and Technology 4(19): 3740-3745, 2012 ISSN: 2040-7467 Maxwell Scientific Organization, 2012 Submitted: March 07, 2012 Accepted: March 30, 2012 Published:

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

Microprocessor-compatible 8-Bit ADC. Memory FEATURES: Logic Diagram DESCRIPTION:

Microprocessor-compatible 8-Bit ADC. Memory FEATURES: Logic Diagram DESCRIPTION: 7820 Microprocessor-compatible 8-Bit ADC FEATURES: 1.36 µs Conversion Time Built-in-Track-and-Hold Function Single +5 Volt Supply No External Clock Required Tri-State Output Buffered Total Ionization Dose:

More information

EE 308 Spring 2015 The MC9S12 A/D Converter

EE 308 Spring 2015 The MC9S12 A/D Converter The MC9S12 A/D Converter o Introduction to A/D Converters o Single Channel vs Multiple Channels o Singe Conversion vs Multiple Conversions o MC9S12 A/C Registers o Using the MC9S12 A/D Converter o A C

More information

Multiplexer for Capacitive sensors

Multiplexer for Capacitive sensors DATASHEET Multiplexer for Capacitive sensors Multiplexer for Capacitive Sensors page 1/7 Features Very well suited for multiple-capacitance measurement Low-cost CMOS Low output impedance Rail-to-rail digital

More information

XRD Bit Linear CIS/CCD Sensor Signal Processor with Serial Control

XRD Bit Linear CIS/CCD Sensor Signal Processor with Serial Control 16-Bit Linear CIS/CCD Sensor Signal Processor with Serial Control May 2000-3 FEATURES 16-Bit Resolution One-channel 12MSPS Pixel Rate Triple-channel 4MSPS Pixel Rate 6-Bit Programmable Gain Amplifier 8-Bit

More information

Complete 14-Bit CCD/CIS Signal Processor AD9814

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

More information

MM58174A Microprocessor-Compatible Real-Time Clock

MM58174A Microprocessor-Compatible Real-Time Clock MM58174A Microprocessor-Compatible Real-Time Clock General Description The MM58174A is a low-threshold metal-gate CMOS circuit that functions as a real-time clock and calendar in bus-oriented microprocessor

More information

Low Power Design of Successive Approximation Registers

Low Power Design of Successive Approximation Registers Low Power Design of Successive Approximation Registers Rabeeh Majidi ECE Department, Worcester Polytechnic Institute, Worcester MA USA rabeehm@ece.wpi.edu Abstract: This paper presents low power design

More information

The counterpart to a DAC is the ADC, which is generally a more complicated circuit. One of the most popular ADC circuit is the successive

The counterpart to a DAC is the ADC, which is generally a more complicated circuit. One of the most popular ADC circuit is the successive 1 The counterpart to a DAC is the ADC, which is generally a more complicated circuit. One of the most popular ADC circuit is the successive approximation converter. 2 3 The idea of sampling is fully covered

More information

EEE312: Electrical measurement & instrumentation

EEE312: Electrical measurement & instrumentation University of Turkish Aeronautical Association Faculty of Engineering EEE department EEE312: Electrical measurement & instrumentation Digital Electronic meters BY Ankara March 2017 1 Introduction The digital

More information

Maxim Integrated Products 1

Maxim Integrated Products 1 19-2715; Rev 2; 1/06 16-Bit DACs with 16-Channel General Description The are 16-bit digital-toanalog converters (DACs) with 16 sample-and-hold (SHA) outputs for applications where a high number of programmable

More information

Analog to digital and digital to analog converters

Analog to digital and digital to analog converters Analog to digital and digital to analog converters A/D converter D/A converter ADC DAC ad da Number bases Decimal, base, numbers - 9 Binary, base, numbers and Oktal, base 8, numbers - 7 Hexadecimal, base

More information

SECTION 8 ADCs FOR SIGNAL CONDITIONING Walt Kester, James Bryant, Joe Buxton

SECTION 8 ADCs FOR SIGNAL CONDITIONING Walt Kester, James Bryant, Joe Buxton SECTION 8 ADCs FOR SIGNAL CONDITIONING Walt Kester, James Bryant, Joe Buxton The trend in ADCs and DACs is toward higher speeds and higher resolutions at reduced power levels. Modern data converters generally

More information

Software Programmable Gain Amplifier AD526

Software Programmable Gain Amplifier AD526 a FEATURES Digitally Programmable Binary Gains from to 6 Two-Chip Cascade Mode Achieves Binary Gain from to 256 Gain Error: 0.0% Max, Gain =, 2, 4 (C Grade) 0.02% Max, Gain = 8, 6 (C Grade) 0.5 ppm/ C

More information

CTCSS FAST CTCSS. Tx MOD1 SELCALL. Tx MOD2 DCS RSSI CARRIER DETECT TIMER. ANALOG Rx LEVEL CONTROL AUDIO FILTER AUDIO SIGNALS MX828

CTCSS FAST CTCSS. Tx MOD1 SELCALL. Tx MOD2 DCS RSSI CARRIER DETECT TIMER. ANALOG Rx LEVEL CONTROL AUDIO FILTER AUDIO SIGNALS MX828 DATA BULLETIN MX828 CTCSS/DCS/SelCall Processor PRELIMINARY INFORMATION Features Fast CTCSS Detection Full Duplex CTCSS and SelCall Full 23/24 Bit DCS Codec SelCall Codec Non Predictive Tone Detection

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

Building a simple spectrum analyzer with dspic30f4013

Building a simple spectrum analyzer with dspic30f4013 FACULTY OF ENGINEERING AND SUSTAINABLE DEVELOPMENT Lian Xiangyu & Jiang Chunguang 06/011 Bachelor s Thesis in Electronics Bachelor`s Thesis in Electronics Examiner: Niklas Rothpfeffer Supervisor: Efrain

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

MCP V Six-Channel Analog Front End. Features. Description. Applications

MCP V Six-Channel Analog Front End. Features. Description. Applications 3V Six-Channel Analog Front End Features Six Synchronous Sampling 24-Bit Resolution Delta-Sigma A/D Converters 94.5 db SINAD, -107 dbc Total Harmonic Distortion (THD) (up to 35 th Harmonic), 112 dbfs SFDR

More information

TC7109/A. 12-Bit A-Compatible Analog-to-Digital Converters. Features: General Description: Device Selection Table

TC7109/A. 12-Bit A-Compatible Analog-to-Digital Converters. Features: General Description: Device Selection Table 12-Bit A-Compatible Analog-to-Digital Converters Features: Zero Integrator Cycle for Fast Recovery from Input Overloads Eliminates Cross-Talk in Multiplexed Systems 12-Bit Plus Sign Integrating A/D Converter

More information

SD2085 Low Power HART TM Modem

SD2085 Low Power HART TM Modem Low Power HART TM Modem Feature Single chip, half duplex 1200 bps FSK modem Meets HART physical layer requirements Bell 202 shift frequencies of 1200Hz and 2200Hz Buffered HART output for drive capability

More information

General-Purpose OTP MCU with 14 I/O LInes

General-Purpose OTP MCU with 14 I/O LInes General-Purpose OTP MCU with 14 I/O LInes Product Specification PS004602-0401 PRELIMINARY ZiLOG Worldwide Headquarters 910 E. Hamilton Avenue Campbell, CA 95008 Telephone: 408.558.8500 Fax: 408.558.8300

More information

THE PERFORMANCE TEST OF THE AD CONVERTERS EMBEDDED ON SOME MICROCONTROLLERS

THE PERFORMANCE TEST OF THE AD CONVERTERS EMBEDDED ON SOME MICROCONTROLLERS THE PERFORMANCE TEST OF THE AD CONVERTERS EMBEDDED ON SOME MICROCONTROLLERS R. Holcer Department of Electronics and Telecommunications, Technical University of Košice, Park Komenského 13, SK-04120 Košice,

More information