This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

ADS1014 Data Format

Other Parts Discussed in Thread: ADS1014

Hello,

the ADS1014 is a 12 bits ADC so I don't understand how it can give output code up to 7FF0h or 8000h. According to my knowledge the maximum code value given by a 12bits ADC is 2^11= 2048.

Thanks in advance for the answer.

Best regards,

Emna.

  • Emna,


    The datasheet is worded awkwardly. Output data is zero-padded on the least significant four bits. Start by removing the last nibble. For 7FF0, this becomes 7FF. For 8000, this becomes 800.

    After that the largest value from the converter becomes 7FF or (2^11)-1 or 2047, and the most negative value becomes 800 or -(2^11) or -2048 in two's complement notation.


    Joseph Wu