Difficulty: Easy
Correct Answer: WR line
Explanation:
Introduction / Context:The ADC0804 is an 8-bit successive-approximation ADC commonly used with microcontrollers. Knowing which control signal initiates a conversion is essential for correct timing and interfacing.
Given Data / Assumptions:
Concept / Approach:On the ADC0804, a LOW-going transition on WR (with CS LOW) starts the conversion process. INTR is an output that signals end-of-conversion. Vref/2 sets the analog scale; it does not start conversion. CS enables access but does not by itself trigger conversion.
Step-by-Step Solution:
1) Assert CS LOW to select the ADC.2) Pulse WR from HIGH to LOW (then HIGH) to start conversion.3) Wait for INTR to go LOW, indicating end-of-conversion.4) Read data by asserting RD as per timing requirements.Verification / Alternative check:Timing diagrams show WR falling edge as the start-conversion event; INTR transitions LOW only after conversion completes.
Why Other Options Are Wrong:
Common Pitfalls:Confusing INTR (EOC) with a start pin, or forgetting CS must be active during WR.
Final Answer:WR line
Discussion & Comments