Difficulty: Easy
Correct Answer: successive-approximation analog-to-digital converter
Explanation:
Introduction / Context:The ADC0804 is a well-known 8-bit ADC used in early microprocessor systems. Recognizing its architecture helps predict speed, interface timing, and use cases. Successive-approximation (SAR) converters like ADC0804 offer deterministic, moderate-speed conversions with simple parallel interfaces, making them popular in education and embedded designs.
Given Data / Assumptions:
Concept / Approach:SAR ADCs perform a binary search using an internal DAC and comparator. The ADC0804 cycles through bit trials from MSB to LSB, requiring a fixed number of steps. This matches the datasheet's timing diagrams and WR/INTR handshake. Single/dual-slope parts are common in instruments but have different timing behavior, and digital-ramp (counter-type) ADCs would require variable-time counting to the code value, which the ADC0804 does not do.
Step-by-Step Solution:
Check interface pins: SAR-style start (WR) and end-of-conversion (INTR) are present.Review timing: fixed number of comparator decisions per conversion.No evidence of multi-comparator flash array.Conclude: ADC0804 is a SAR ADC.Verification / Alternative check:Manufacturer datasheets explicitly label ADC0804 as a successive-approximation ADC with an internal DAC and comparator. Conversion time scales with the internal clock but not with input level.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:successive-approximation analog-to-digital converter
Discussion & Comments