Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Multirate DSP, part 3: ADC oversampling


Example 12.9.
Given the following DSP system specifications, determine the equivalent ADC resolution:

  • Oversampling rate system
  • First-order SDM with 2-bit ADC
  • Sampling rate = 4MHz
  • Maximum audio input frequency = 4 kHz.

Solution: Since m = 2 bits, and

fs/(2fmax) = 4000 kHz/(2 × 4 kHz) = 500.

we calculate

n = m + 1.5 × log2 (fs/(2fmax)) – 0.86 = 2 + 1.5 × log2 (500) – 0.86 ≈ 15 bits.

We can also extend the first-order SDM DSP model to the second-order SDM DSP model by cascading one section of the first-order discrete-time analog filter, as depicted in Figure 12-29.


Figure 12-29. DSP model for the second-order SDM ADC.

Similarly to the first-order SDM DSP model, applying the z-transform leads to the following relationship:

Notice that the noise shaping filter becomes a second-order highpass filter; hence, the more quantization noise is pushed to the high-frequency range, the better ADC resolution is expected to be. In a similar analysis to the first-order SDM, we get the following useful formulas:

n = m + 2.5 × log2 (fs/(2fmax)) – 2.14 (12.34)

(fs/(2fmax))5 = (π4/5) × 22(nm). (12.35)

In general, the Kth-order SDM DSP model and ADC resolution formulas are given as:

n = m + 0.5 × (2K + 1) × log2 (fs/(2fmax)) – 0.5 × log22K/(2K + 1)) (12.37)

(fs/(2fmax))(2K + 1) = (π2K/(2K + 1)) × 22(nm). (12.38)

Example 12.10.
Given the oversampling rate DSP system with the following specifications, determine the effective ADC resolution:

  • Second-order SDM = 1-bit ADC
  • Sampling rate = 1 MHz
  • Maximum audio input frequency = 4 kHz.

Solution:

n = 1 + 2.5 × log2 (1000 kHz/24 kHz) – 2.14 ≈ 16 bits.

Next, we review the application of the oversampling ADC used in industry. Figure 12-30 illustrates a function diagram for the MAX1402 low-power, multichannel oversampling sigma-delta analog-to-digital converter used in industry. It applies a sigma-delta modulator with a digital decimation filter to achieve 16-bit accuracy. The device offers three fully differential input channels, which can be independently programmed. It can also be configured as five pseudo-differential input channels. It comprises two chopper buffer amplifiers and a programmable gain amplifier, a DAC unit with predicted input subtracted from the analog input to acquire the differential signal, and a second-order switched-capacitor sigma-delta modulator.


(Click to enlarge)

Figure 12-30. Functional diagram for the sigma-delta ADC.

The chip produces a 1-bit data stream, which will be filtered by the integrated digital filter to complete ADC. The digital filter's user-selectable decimation factor offers flexibility for conversion resolution to be reduced in exchange for a higher data rate, or vice versa. The integrated digital lowpass filter is first-order or third-order Sinc infinite impulse response. Such a filter offers notches corresponding to its output data rate and its frequency harmonics, so it can effectively reduce the developed image noises in the frequency domain. (The Sinc filter is beyond the scope of our discussion.) The MAX1402 can provide 16-bit accuracy at 480 samples per second and 12-bit accuracy at 4,800 samples per second. The chip finds wide application in sensors and instrumentation. Its detailed features can be found in the MAX1402 data sheet (Maxim Integrated Products, 2007).


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.