analog to digital converters (adc) 1 ©paul godin created april 2008 adc 1.1

Post on 28-Dec-2015

220 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

TRANSCRIPT

Analog to Digital Converters (ADC)

1

©Paul GodinCreated April 2008

ADC 1.1

Introduction

◊ Analog to digital conversion is an important aspect of digital electronics.

◊ ADCs allow the use of real-world values with the advantages of digital electronics.

◊ There are many examples of ADC converters used in everyday applications.

Name a few examples of ADC applications

ADC 1.2

Advantages of Digital Values

◊ Relatively less sensitive to distortion (noise and losses)◊ Can be reproduced much more accurately◊ Much easier to reconstruct a signal◊ More storage options◊ Can be processed mathematically and logically◊ Easier to standardize◊ Systems are easier to design (fewer voltage / current issues)◊ Digital systems can be made small (low current)◊ Display options

ADC 1.3

Challenges with ADC

◊ Converting an analog value to digital values comes with disadvantages:◊ It takes time to convert a signal from Analog to Digital,

and then to process that signal. May be too slow for some applications.

◊ Never 100% reproduction…always a series of discrete values.

◊ Requires more complex circuit design◊ More faithful reproduction requires more bit of

resolution.◊ Requires other circuit elements such as oscillators and

memory systems.

ADC 1.4

ADC FUNDAMENTALS

ADC 1.5

Sampling

◊ Voltage signals are comprised of amplitude over time.

◊ The analog signal must be converted to its digital value at specific periods of time.

◊ Sampling is the process of taking a digital value at regular time intervals.

ADC 1.6

Sampling

Time

AC Value

Digital Values at timed intervals

Sampling Pulses

ADC 1.7

Sampling

◊ Increasing the number of binary values representing a voltage value improves its voltage resolution. This is called quantization. The greater the number of bits available, the greater the quantization level.

◊ Increasing the sampling frequency improves the time resolution. The more samples taken over time the more accurate the representation of the signal.

ADC 1.8

Nyquist

◊ The sampling frequency must be greater than the highest frequency component of the analog signal.

◊ The Nyquist frequency has a value of twice the highest analog frequency.

Where:◊ fsample is the sampling frequency

◊ fA(MAX) is the maximum analog frequency

)MAX(Asample f2f

ADC 1.9

Sampling Issues

AC Value

Digital Value

Properly Sampled Under-sampled

ADC 1.10

Sampling Rates

◊ Sampling rates are selected based on:◊ application◊ requirements◊ standards

◊ As an example, an exterior thermometer needn’t be sampled at the same rate as an audio application.

ADC 1.11

Audio Application of ADC

◊ When music is digitized for CDs the sampling frequency is 44.1 kHz (48 kHz for professional recording).

◊ According to the Nyquist frequency, 44.1kHz is acceptable for up to 22 kHz. Since most audio equipment functions at less than 20 kHz (and is at the upper limit of human hearing), the 44.1 kHz sampling rate is acceptable.

◊ The bit depth is 16 for CD audio.

ADC 1.12

Notes on mp3

◊ MP3 audio files refer to their quality as a bit rate. Typical mp3 bit rates are 128kbps and 192kbps (maximum is 320kbps according to standards).

◊ MP3 is an encoding format used to compress and reduce the file size. The file follows protocols and contains various elements such as headers, file information, the compressed data, bit rate type and other information.

◊ For comparison, bit rate for uncompressed audio (CD) recording is 44.1kHz sampling x 16 bits x 2 channels (1411.2 kbps).

ADC 1.13

Digitizing Voice

◊ Human voice for applications such as telephone conversations need not be sampled at a similar rate and bit depth as music.

◊ Typically, 8 bits at 8 kHz sampling rate is used (64kbps).

ADC 1.14

ASYNCHRONOUS ADC

ADC 1.15

Asynchronous ADC

◊ ADCs can be constructed from comparators.

◊ A comparator is an op amp configuration where the voltages of two inputs are compared. ◊ If the “+” input is greater than the “-” input, the output is

a logic high.

We first investigated comparators when discussing the 555 timer’s function.

VDD

ADC 1.16

Comparator-Based ADC

2-bit “weighted” ADC

Analog In

VDD

Digital Out

ADC 1.17

Flash ADC

3-bit Flash ADC

Analog In

VDD

Digital Out

Priority Encoder

Enable

ADC 1.18

SYNCHRONOUS ADC

ADC 1.19

Hold/Store

◊ Asynchronous ADC have limited uses. ADCs need to store measured values between the sampling pulses. ◊ The data must be held between the sampling pulses to allow

the digital devices to read the values. This is necessary for values to be either processed or stored.

◊ As the input values change the digital output values change numerically, not linearly.

◊ All bits of an ADC do not change at precisely the same time due to delays.

◊ Converting a stored digital signal back to analog requires a similar clocking frequency (time needs to be reproduced). AD conversion represents a series of values at specific instances of time.

◊ The Sample and Hold creates the output “ladder” effect.

ADC 1.20

Basic ADC

◊ A basic ADC contains:◊ differential analog inputs (VREF) for

scaling◊ Analog signal input (VIN)◊ Output Enable for tristate-able outputs

(OE)◊ Start of Conversion input (SOC) to

trigger the analog signal read cycle.◊ End of Conversion output (EOC) to

indicate that the conversion is complete, the data is on the data bus and a new input may be applied.

◊ Digital output (D0~D7).

ADC 1.21

Flash ADC with Sample/Hold

3-bit Flash ADC

Analog In

VDD

Dig

ital O

ut

Priority Encoder

Enable

Dig

ital O

ut

Latch Circuit

Clock

ADC 1.22

Flash ADC

◊ Flash ADCs are very fast and can convert data at high frequencies.

◊ The major disadvantage to flash ADCs is the complexity of the circuits. ◊ One op amp is required for each output value (minus one

for all zero). This means that:◊ an 8-bit Flash ADC requires 255 op amps◊ a 12-bit Flash ADC requires 4095 op amps◊ a 16-bit flash ADC requires 65,535 op amps

ADC 1.23

Dual Slope ADC

◊ Also known as Counter-Ramp or Digital Ramp ADC

◊ A dual slope ADC is commonly used in measurement instruments (such as DVM’s).

ADC 1.24

Dual Slope Circuit

Input

Digital Output

Oscillator

Control Logic

Registers

Switch

Counter

VReference

ADC 1.25

Dual Slope Function

◊ The Dual Slope ADC functions in this manner:◊ When an analog value is applied the capacitor begins to

charge in a linear manner and the oscillator passes to the counter.

◊ The counter continues to count until it reaches a predetermined value. Once this value is reached the count stops and the counter is reset. The control logic switches the input to the first comparator to a reference voltage, providing a discharge path for the capacitor.

◊ As the capacitor discharges the counter counts.◊ When the capacitor voltage reaches the reference

voltage the count stops and the value is stored in the register.

ADC 1.26

Dual Slope

ChargeCapacitor Cycle

Counter Cycle Counts from 0 to max

Discharge

Max Count / Restart Count

Count Reset

CountDisplay

CountDisplay

VReference

ADC 1.27

Dual Slope

◊ The Dual Slope method takes time for the conversion to occur. Each additional bit improves resolution but also adds a significant bit to the counter, costing considerable time. This type of ADC is therefore unsuitable for rapidly changing analog input.

◊ Each clocking pulse increments the counter by one. It takes (2N-1) clock cycles times the clock period for an output to be produced.

ADC 1.28

Dual Slope

◊ If using an 8-bit digital ramp with an input frequency of 500kHz, the conversion would take:

◊ If using a 12-bit digital ramp with an input frequency of 500kHz, the conversion would take:

s510s2255)kHz5001

()12( 8

ms19.8s24095)kHz5001

()12( 12

ADC 1.29

Dual Slope

◊ The Dual Slope method is accurate and requires less circuitry than other methods. Since it uses the same clock input for both phases of conversion, a drift in the clocking frequency will not affect the accuracy of the output.

◊ The Dual Slope is best suited for applications where the measured value is relatively stable such as DC voltage measurements.

ADC 1.30

Successive-Approximation ADC

◊ The Successive-Approximation ADC is one of the most popular types in use today. It has a relatively simple configuration and an excellent conversion rate.

ADC 1.31

Successive-Approximation ADC

Input

Digital Output

Oscillator

Control Logic

Approximation Register

Output Register

Digital to Analog

Converter

Voltage Comparator EOC

ADC 1.32

SOC

Successive-Approximation ADC◊ The SAC ADC functions in this manner:

◊ The approximation register is reset to all zero.◊ When a voltage is applied to the input the approximation

register’s most significant bit is changed from a 1 to a 0. The digital output of the register is converted back to analog through the DAC and is compared to the applied analog voltage. If the value is too low the 1 is left at the MSB. The next MSB is incremented, the output converted to analog and again compared to the analog input. Each bit is successively incremented and the output value compared.

◊ If the voltage from the DAC becomes higher than the applied analog value the bit is reset to 0 and the next MSB is incremented and compared.

◊ The process continues in this manner until the LSB value is reached. At the LSB, if the applied value makes the DAC output voltage higher the bit is reset to 0. The ADC has completed its process. It stores the value to the output register and provides an EOC output to indicate there is a value in the register.

ADC 1.33

SAC ADC Conversion

◊ An 8-bit SAC has a resolution of 10 mV. What is the digital output for an input of 505 mV?

◊ Solution:

50 steps = 0011 001051 steps = 0011 0011

◊ A SAC produces an output below the analog voltage, therefore the output is 0011 0010 (50 steps at 10 mV per step, or 500 mV)

steps5.50mV10/mV505

ADC 1.34

SAC ADC Conversion Time

◊ Theoretically each step in the comparison process takes a clock edge. It therefore takes a SAC ADC approximately the same amount of clock edges as the number of bits it handles.

If a SAC ADC has an output of 8 bits and an input clocking frequency of 500 kHz, it takes approximately:

8•(1/500kHz) = 8•2µs=16µs

◊ In actual practice it may take more than one clock edge per step, but this is still faster than some other methods.

ADC 1.35

The ADC08◊ The ADC08 family is a relatively popular SAC ADC.

D0 to D7 Digital Output-VIN

+VIN

GNDAnalog GNDDigital

ClkIN

ClkOUTRD

CS

Vref/2

INTR

WR

A D

VDD

ADC 1.36

ADC08

◊ +VIN and –VIN : Differential analog voltage.

◊ Vref/2 : Used to change the input voltage range. Normally at 2.5V when VDD = 5V, if 1.5V is applied the input range is 3.0 Volts and the resolution is changed accordingly.

◊ ClkIN: Input clock. External clocking edges can be provided to the ADC.

◊ ClkOUT: Output Clock. This ADC has an internal clocking circuit that requires external connection to an RC.

T = 1.1RCTypical values: 10kΩ & 150ρF

ADC 1.37

ADC08

◊ CS’ : Chip Select (input), tri-states the digital output for bus applications

◊ RD’: Read enable (input), enables the output from the Approximation register to the output register.

◊ WR’: Write enable (input), used to request the start of a new conversion.

◊ INTR: Interrupt, output high when the ADC is in the process of converting an input. Used to signal microprocessors or microcontrollers. Conversion time is approximately 100µs.

ADC 1.38

ADC08

◊ Questions:◊ What is the purpose of two grounds?

◊ How would the device be configured for an input of:◊ 0 to 5 Volts◊ 0 to 3 Volts◊ -2.5 to +2.5 Volts

◊ What is the purpose of the Vref/2 input?

ADC 1.39

SAC ADC

◊ The SAC ADC is a fast, accurate device.

◊ It has few disadvantages over other methods.

ADC 1.40

©Paul R. Godinprgodin°@ gmail.com

END ADC1

ADC 1.41

There is a bug with bold I in VerdanaHere is the word IN typed 3 times: IN IN INHere is I typed 5 times: IIIII

top related