Inhaltsverzeichnis

The ultra low noise 24-bit ADC: AD7190

see also Quad Delta-Sigma Board
Or that external article: on mbed.org

Test measurements on a strain gauge load cell

The laodcell was connected with a 6-wire configuration to the evaluation board of the AD7190.
The samplerate was set to 10 S/s, chopping enabled (continuous offset and gain correction). The analog 5V supply was powered from the RIGOL DP832, which has a very low noise level.

We measured an astonishing low noise level of about 50nV(rms).


Spectrum at 600 S/s

Noise level with shorted inputs

Spectrum with connected loud speaker

Spectrum when singing a "Uuuuu..."

Here we evaluated the possibility to use a loudspeaker as a low-frequency microphone. Due to lack of shielding of electromagnetic fields, the coil picks up a huge amount of signals, which are not related to acoustic sound waves.

Arduino Firmware for Arduino DUE

ad7190_bridge.zip

Problems

Holding Time of last Data Bit

When the LSBit is zero, that is transferred from the ADC to the MCU, the MCU reads a one.

Since the DOUT signal of the ADCs SPI is also used to signal data ready (active low), DOUT goes immediately high at the last rising edge of SCLK.
The rising edge of SCLK and DOUT happens nearly simultaneously. The DOUT (MISO) line is sampled by the MCU at the rising edge of SCLK. So this signal is not in a steady state, when the sampling occurs. In my setup with the Arduino DUE, the LSBit is allways read as one.


Image based on this from Wikipedia, created by Cburnett.

Workarounds