28
LTC2400
TYPICAL APPLICATIONS
U
5V
0.1µF
V
IN
SDO
SCK
CS
CHIP SELECT
SERIAL
SERIAL
3
2
1
4
5
6
7
8
V
REF
V
REFIN
V
CC
0.1µF
5V
GND
LTC2400
F
O
11
4
7 8
12
C
S
1µF
EXT
C
H
1µF
LARGE
MAGNITUDE
DIFFERENTIAL
INPUT
C1
0.01µF
0.1µF
2400 F29
–5V
1/2
LTC1043
13
16
14
17
Figure 29. Simple Rail-to-Rail Circuit Converts Differential Signals to Single-Ended Signals
LTC2400 High Accuracy Differential to Single-Ended
Converter for ±5V Supplies
The circuit in Figure 30 is ideal for low level differential
signals in applications that have a ±5V supply and need
high accuracy without calibration. The circuit combines an
LTC1043 and LTC1050 as a differential to single-ended
amplifier that has an input common mode range that
includes the power supplies. Resistors R1 and R2 set the
LTC1050’s gain at 101.
The circuit schematic shows an optional resistor R
S
. This
resistor can be placed in series with the LTC2400’s input
to limit current if the input goes below –300mV. The
resistor does not degrade the converter’s performance as
long as any capacitance, stray or otherwise, connected
between the LTC2400’s input and ground is less than
100pF. Higher capacitance will increase offset and full-
scale errors (see Input Current section).
The circuit achieves a nonlinearity of ±1ppm, input re-
ferred noise of 0.05µV
RMS
(averaging 64 samples), 19.6
bits resolution for a full-scale input of 40mV, and an overall
accuracy of 20 bits when using an LTC1236-5 precision
5V reference.
Multiple Inputs
The simple circuit shown in Figure 31 takes advantage of
the LTC2400’s single conversion settling. The LTC1391
serially programmed multiplexer allows accurate conver-
sions on each of its eight channels without introducing any
offset, gain or linearity errors with its input signal between
0V and V
REF
, as long as the total capacitance connected to
the LTC2400’s input is less than 1000pF. A small 2ppm
(typ) error occurs when an active input channel’s signal
voltage reaches –300mV (typ). If the excursion below
ground is above –200mV (typ), the error is less than the
LTC2400’s 0.3ppm
RMS
noise. On the topside, the selected
input signal’s magnitude can go above the 5V supply with
no linearity degradation or increased noise. Figure 31’s
circuit can tolerate overdrive on the unselected channel
without conversion degradation as long as the overdrive is
less than 250mV above the supply voltage or 250mV
below ground. The linearity performance is similar to that
shown in the Typical Performance Characteristics section.
Errors caused by channel-to-channel crosstalk are less
than the LTC2400’s typical input noise. This remains the
case for a frequency range of 1Hz to 153.6kHz (the
LTC2400’s internal clock frequency or 10f
S
). When the
frequency reaches 1.536MHz (4V
P-P
), the RMS noise typi-
cally doubles and the linearity is degraded by 30ppm (typ).
29
LTC2400
V
IN
SDO
SCK
CS
CS
SDO
SCK
3
2
1
4
5
6
7
8
V
REF
V
REFIN
V
CC
0.1µF
0.1µF
5V5V
GND
LTC2400
F
O
2400 F31
V
+
D
V
DATA 2
DATA 1
CS
CLK
GND
CH0
CH1
CH2
CH3
CH4
CH5
CH6
CH7
S0
S1
S2
S3
S4
S5
S6
S7
16
15
14
13
12
11
10
9
1
2
3
4
5
6
7
8
LTC1391
Figure 31. Multiplex 8-Signal Sources with the LTC1391 and Maintain the LTC2400’s Conversion Accuracy
TYPICAL APPLICATIONS
U
V
IN
SDO
SCK
CS
CHIP SELECT
SERIAL
SERIAL
3
3
7
4
6
R1
9.09k
R
S
*
5.1k
R2
90.9k
*OPTIONAL: LIMITS INPUT CURRENT IF THE
INPUT VOLTAGE GOES BELOW –300mV
2
2
1
4
5
6
7
8
V
REF
V
REFIN
V
CC
0.1µF
5V
GND
LTC2400
F
O
0.1µF
5V
5V
–5V
0.1µF
0.1µF
11
4
7 8
12
C
S
1µF
EXT
C
H
1µF
DIFFERENTIAL
INPUT
V
FS
= 40mV
BRIDGE-
TYPICAL
INPUT
C1
0.01µF
0.1µF
2400 F30
–5V
1/2
LTC1043
13
16
14
17
350
AGND OR
–V
EXT
350
350350
+
LTC1050
Figure 30. Differential to Single-Ended Converter for Low Level Inputs, Such as Bridges, Maintains the LTC2400’s High Accuracy
30
LTC2400
TYPICAL APPLICATIONS
U
Sample Driver for LTC2400 SPI Interface
The LTC2400 has a very simple serial interface that makes
interfacing to microprocessors and microcontrollers very
easy. Shown in Figures 32 and 34 are listings of sample
source codes that can be used to initiate conversions and
retrieve data from the LTC2400.
The listing in Figure 32 was created by Parallax, Inc. (916-
624-8333), for the BASIC Stamp. This code uses indi-
vidual port lines to control the LTC2400’s conversion and
'LTC2400 Sample Driver
'03/17/99 This program is an example showing how to access the
' LTC2400 using the Basic Stamp2 from Parallax. Since
' the BS2 is based on a 16-bit architecture, only the
' upper 16 bits of the 24-bit result are displayed,
' although all 24 bits are retrieved.
ADlo var word 'A/D result - lower 16 bits
ADhi var word 'A/D result - upper 8 bits
Ctr var byte 'loop counter
Temp var bit 'temporary bit used for shift
SDO con 0 'Serial data connected to P0
SCK con 1 'Serial clock connected to P1
CS con 2 'Chip Select connected to P2
Pwr con 3 'Stamp supplies power connected to P3
'(Uses only 0.3mA!)
Init
dira = $E 'Set up data direction
'Pwr, CS, and SCK are outputs
'SDO is an input
outa = $0 'Initialize outputs
'Pwr, CS, and SCK are low
pause 100 'Wait 100mS for I/O to settle
high Pwr 'Power up the LTC2400
pause 1 'Wait 1mS for power-on sequence
high CS 'Disable the device until we
Start 'wish to read it.
pause 125 'Eight times second
low CS 'Enable the LTC2400
for Ctr = 0 to 31
high SCK 'Cycle clock 32 times
gosub ShiftL
retrieve the 32-bit result. A fourth port line is used to
power the LTC2400, a vivid example of the converter’s
micropower operation. The program’s main sequence
activates the LTC2400’s serial interface, uses a loop to
retrieve the 32 conversion bits, and then places the
converter’s interface in a high impedance state and start-
ing the next conversion. All bits are retained in variables
ADlo and ADhi. The code can be found on their web site,
www.parallaxinc.com.

LTC2400IS8#PBF

Mfr. #:
Manufacturer:
Analog Devices Inc.
Description:
Analog to Digital Converters - ADC 24-B Pwr No Lat Delta-Sigma ADC in SO-
Lifecycle:
New from this manufacturer.
Delivery:
DHL FedEx Ups TNT EMS
Payment:
T/T Paypal Visa MoneyGram Western Union