Hi,
I am new to reading ADC. I want to use AD9629 in my design. And i want to read this with FPGA. How can i handle it? Where should i start when writing the VHDL code? What are the things i should be aware of?
Best regards.
AD9629
Production
The AD9629 is a monolithic, single channel 1.8 V supply, 12-bit, 20 MSPS/40 MSPS/65MSPS/80 MSPS analog-to-digital converter (ADC). It features a high performance...
Datasheet
AD9629 on Analog.com
Hi,
I am new to reading ADC. I want to use AD9629 in my design. And i want to read this with FPGA. How can i handle it? Where should i start when writing the VHDL code? What are the things i should be aware of?
Best regards.
Hi,
The sample FPGA code has been sent. I hope this gets you going.
Take care.
Doug
Hi,
I want to ask another question. Is it possible to do these operations with microblaze processor and IP cores?
Best regards.
Hi Doug,
I am trying to read AD9629 and i want to ask some questions.
This is my circuit. Analog input range(Pin-9) of AD8475 is 0 to 4.2V. ADC inputs become 0.46V and 1.34V when AD8475 input is 0.29. And digital output of the ADC is 8D5. This value is true?
What should be the relationship between input values and output?
I can't understand this table. What is the meaning of this?
Thanks for help.
Hi HrnTtk,
To verify you capture the ADC outputs properly, I recommend that you use the output test patterns controlled by Register 0x0D Bits[3:0]. For example, to output a checkerboard pattern you would do the following SPI writes:
Write Register 0x0D = 0x04
Write Register 0xFF = 0x01
This will put AD9629 in output checkerboard test mode. There are several other test patterns to choose from. Please see Table 16 in the AD9629 datasheet for more options.
Table 12 in the AD9629 datasheet shows the output values for a few selected voltage values at the analog input. I numbered them in the picture above to match the numbers in the description below.
Does this answer your question?
Thank you.
Doug
Hi Doug,
In offset binary mode and second condition(Vin+ - Vin- = -1V), i am reading 800H. I check the DFS pin and it is logic zero. So the output mode of ADC is offset binary. But it gave an output according to the 2's comp. mode in second condition. What can be the problem?
Best regards.
Harun
Hi Harun,
Is your CSB pin connected to DRVDD to put the AD9629 in "pin mode" (non-SPI mode)?
Thank you.
Doug
Yes, my CSB pin connected to DRVDD.
Thank you.
Hi Doug,
I am sending some values that i saved.
Vin+ - Vin- ADC Output
-1V 800
-0.28V DA9
0V 807
0.32V AB4
0.68V D75
1V FFF
According to my results, the ADC does not work properly when the Vin+ - Vin- value goes to negative.
And also my DCO signal is not exactly a square wave, it is a sinusoidal wave. Could this be the source of the problem?
Thanks.
Hi Harun,
I agree that your output codes for positive differential input voltages look good.
Your output data for negative input voltages seems to have the same slope (ADC gain) as the output codes for positive values. Also, the data point you provided earlier with 0.46V - 1.34V = -0.88V falls almost on the same line. It is like you are adding an offset to your output codes when the MSB = 0.
Could you double check your FPGA design? Is it possible you are adding an unintentional offset of 2^11 to the codes for when the MSB = 0? When I subtract 2^11 from your output values when MSB = 0 (for negative differential analog input voltage), your output codes vs. input voltage all fall on a straight line.
Thank you.
Doug
Hi Doug,
I checked my FPGA code and there is no an unintentional offset. And also i checked the output signals directly from the ADC parallel channels(no processing). The results is still the same.
Thank you.
Harun
Hi Harun,
If the values you get are consistent, I do not suspect it is a DCO issue. If you had SPI communication with AD9629 you could try changing DCO-to-Data timing as an experiment, but it sounds like you do not have SPI control. Can you change the capture timing in your FPGA?
Also, how did you observe the outputs directly at the ADC outputs?
Thanks,
Doug
Hi Doug,
I have SPI communication.So i can change DCO to data timing. Change capture timing means divide the clock, am i right?
I observed the outputs directly with Integrated Logic Analyzer.It is a Xilinx tool. I can observe the ADC output before the values entering the FPGA code.
Thank you.
Harun
Hi Doug,
I have SPI communication.So i can change DCO to data timing. Change capture timing means divide the clock, am i right?
I observed the outputs directly with Integrated Logic Analyzer.It is a Xilinx tool. I can observe the ADC output before the values entering the FPGA code.
Thank you.
Harun
Hi Harun,
No, I'm not referring to the clock frequency divider. Register 0x17 allows you to change the timing of DCO related to Data. For example, if you wanted to delay data with respect to the DCO you could do something like:
Write Register 0x17 = 001000100 #delay data by about 2.8ns
Write Register 0xFF = 0x01 #transfer bit to put previous register writes into effect
Please see the datasheet for more information.
Can you change capture timing in your FPGA?
Thank you.
Doug
Hi Doug,
I changed DCO to data timing but the result was the same, there is no change. I dont know what to try next.
Best regards.
Hi Harun,
You should have seen some difference in your captured data when you changed the DCO-data timing. Did you see any change? How many different values did you try?
Earlier in this thread you wrote that CSB is connected to DRVDD, which is why I thought you did not have SPI communication. Is CSB now being driven by a SPI controller of some sort?
I'm sorry but at this moment I do not have more ideas for you to try. As an ad hoc solution you might have to subtract 2^11 from your result when MSB = 0.
Thank you.
Doug