Programmable Devices
CPLDs, FPGAs, SoC FPGAs, Configuration, and Transceivers
20744 Discussions

Appropriate ADC for educational project?

Altera_Forum
Honored Contributor II
2,339 Views

Hello folks! 

 

I'm a student of 'Network Systems and Data Communications' department in Greece and am doing my final project/dissertation right now in Leiria, Portugal at Electrical Engineering department. 

 

Because the subject is kind of complex, I'm going to introduce to you only the part on which I'd like to set my specific question. 

 

I want to implement a small device/circuit which will be inputted some analog voice commands from a normal electret mic. Till now I'm not clear about what pre-amp/op-amp I should use, but I believe I'll figure this out. 

 

The implemented circuit will be interfaced onto a Pluto-II (Cyclone-I) FPGA board, probably SPI/i2c will fit the best. I've read a lot about ADC's appropriate for voice/audio systems, and I suggest that an Σ-Δ (sigma-delta) ADC will be good for me, in combination of a simple low-pass anti-aliasing filter consisting of a resistor and a capacitor in parallel before the ADC. 

 

Actually, regarding the Σ-Δ ADC I still have no clear image if it is a linear or logarithmic ADC, cause as far as I know, it should be a logarithmic one for audio sampling, isn't it? 

 

Considering a specific topic of your forum and obvious knowledge you people got, I thought that maybe you could suggest to me any appropriate market ADC for my purpose. 

 

Thank you! 

 

Sincerely, 

David
0 Kudos
32 Replies
Altera_Forum
Honored Contributor II
259 Views

I think amilcar gave me the Verilog code of both Decimation and LPF if i am not misstaken!!!!

0 Kudos
Altera_Forum
Honored Contributor II
259 Views

Dear Amilcar, 

 

This LPF that you sent me on the verilog code. 

 

What values has implement on the LPF? and which is the Cut-off Frequency? 

 

If I want change the Cut-off frequency i will change these signals? 

 

logic signed [3*utils::MinBits(DECIMATION-1)+1:0] DELTA1 = 1'd0; 

logic signed [3*utils::MinBits(DECIMATION-1)+1:0] CN1, CN2 = 1'd0

logic signed [3*utils::MinBits(DECIMATION-1)+1:0] CN3, CN4; 

logic signed [3*utils::MinBits(DECIMATION-1)+1:0] DN0, DN1, DN3, DN5 = 1'd0

 

thank you again.
0 Kudos
Altera_Forum
Honored Contributor II
259 Views

The LPF is a function of the decimation. 

Please read this: http://www.ti.com/lit/gpn/ads1202 it will explain all the formulas.
0 Kudos
Altera_Forum
Honored Contributor II
259 Views

Amilcar, could you please send us the initial sinc3+decimation code in VHDL, which you had sent us translated to Verilog? 

 

Also, regarding the interface of ads1202 onto the fpga, the standard in mode 3 using an external clock is a unidirectional SPI bus using only MOSI function and assuming the ADC to be the master, isn't it? Any example code in VHDL? 

 

Thanks in advance!
0 Kudos
Altera_Forum
Honored Contributor II
259 Views

Isn't the code in TI AN SBAA094? 

 

It's not actually SPI, simply a clock and a serial data stream: 

process(MCLK, RESn) begin if RESn = '0' then DELTA1 <= (others => '0'); elsif MCLK'event and MCLK = '1' then if MOUT = '1' then DELTA1 <= DELTA1 + 1; end if; end if; end process;
0 Kudos
Altera_Forum
Honored Contributor II
259 Views

FvM you are right, but SBAA094 is regarding to ADS1202 in modes 0-2, operating with the internal clock. We are thinking of using the ads1202 in mode 3 operation with an external clock of 20MHz. 

 

Ads1202 datasheet, regarding mode 3, refers that data will be sent every 2nd cycle of clock. 

 

Also, the application shown in SBAA094 is supposed to be connected to some further DSP, which in our case is not the fact. We intend to keep data on the fpga, after filter and decimation process, so CN5 will actually NOT be an output. 

 

As far as we can understand, RESN (reset?) is driven by the DSP, so we should control this somehow else, shouldn't we? 

 

Regarding to SBAA094 on page 15, there is some kind of clock divider implemented. I got attached a datasheet we found, could you please have a look?! It is referring to ads1202 operating speciffically in mode 3. 

 

I also attach you the Verilog code Amilcar had sent to me, as it seems to be all done in there! 

 

Thank you very much for your interest!
0 Kudos
Altera_Forum
Honored Contributor II
259 Views

 

--- Quote Start ---  

the application shown in SBAA094 is supposed to be connected to some further DSP, which in our case is not the fact. 

--- Quote End ---  

 

I don't see a relevant difference for the ADC data interface and decimator operation. 

 

 

--- Quote Start ---  

As far as we can understand, RESN (reset?) is driven by the DSP 

--- Quote End ---  

 

Most FPGA designs have a reset signal, either an external input or derived from internal POR. For the ADC interface and decimator, it's not absolutely required, I think. 

 

 

--- Quote Start ---  

Regarding to SBAA094 on page 15, there is some kind of clock divider implemented. 

--- Quote End ---  

 

As the text explains, it's their way to setup the decimation ratio. With mode 3, a clock divider is needed to supply the ADS1202 clock, which is something different. Mode 3 interface has an additional difficulty in so far, as it must recover the correct clock edge from the data. Unless you want to use a variable clock rate for the ADS1202 (I don't know exactly, what shall be the purpose at all), you don't have a benefit from mode 3 in my opinion. The datasheet shows somewhat different performance data for mode 3, but there's no clear advantage or disadvantage for this operation mode. 

 

P.S.: The main advantage of mode 3 is an crystal accurate sampling frequency. It may be needed in some applications.
0 Kudos
Altera_Forum
Honored Contributor II
259 Views

 

--- Quote Start ---  

Unless you want to use a variable clock rate for the ADS1202 (I don't know exactly, what shall be the purpose at all), you don't have a benefit from mode 3 in my opinion. 

--- Quote End ---  

 

 

How else are the adc and fpga supposed to be synchronized, when not wanting to use the internal clock of the adc for whole the system? 

 

We need 20MHz for 10BASE -T Ethernet transmission after processing data to be properly encapsulated into packets. 

 

process(RESN, CNR) begin if RESN = '0' then DN0 <= (others => '0'); DN1 <= (others => '0'); DN3 <= (others => '0'); DN5 <= (others => '0'); elsif CNR'event and CNR = '1' then DN0 <= CN2; DN1 <= DN0; DN3 <= CN3; DN5 <= CN4; end if; end process; 

 

What about this CNR, how is that produced? 

 

Did you have a look at Amilcars' code?
0 Kudos
Altera_Forum
Honored Contributor II
259 Views

 

--- Quote Start ---  

How else are the adc and fpga supposed to be synchronized, when not wanting to use the internal clock of the adc for whole the system? 

--- Quote End ---  

 

Also a free running ADC output (clock and data) can be synchronized to the system clock. 

 

--- Quote Start ---  

What about this CNR, how is that produced? 

--- Quote End ---  

It's the output of the said "page 15" clock divider. It's bad coding style to use it in an edge sensitive process. I fear, the TI application note must be used rather carefully. Amilcar has implemented the clock divider in his code, too.
0 Kudos
Altera_Forum
Honored Contributor II
259 Views

Ok so we will use it in mode 1 with the 10MHz standard, and get 50% of general system delay having the rest of the implementation running at 20MHz. You are right, that should actually not be such a problem. We were stuck on the idea of using one unified system clock. Anyway.. 

 

A decimation rate of 256 will give us about 40kHz of data rate and a 24-bit resolution, superb quality for our purpose of application. Will the tradeoff of filter-response due to that affect the rest of our implementation? 

 

So do you think that we should use Amilcars' code? 

Because in SBAA094 the clock divider is not introduced at all. 

 

Using Amilcars' code, clock divider & decimation ratio definition is included, not as in SBAA094 proposal of analog switch input of decimation rate. 

 

It's actually quite smart, having that implemented in this way. 

 

What's your opinion?
0 Kudos
Altera_Forum
Honored Contributor II
259 Views

If I understand right, Amilcar's code is based on a clocking scheme similar to mode 3. He should comment on it himself. In the description, it's said the ADC clock is derived from system clock, which would imply mode 3 and additional external logic. This understanding is also suggested by the fact, that the ADC clock (i_ds_clk_out) isn't treated as an unrelated clock, which would need another synchronization stage. 

 

But the code is dedicated to ADS1204 which has a built-in clock divider and in contrast ADS1202 sends a clock at data rate rather than twice the data rate. So for either mode you choose some design modifications are necessary. 

 

At this point, I tend to follow your previous consideration to prefer mode 3.
0 Kudos
Altera_Forum
Honored Contributor II
259 Views

Dear amilcar, 

 

Can you specify in which mode should will we use the ADS_1202 so that we can use the source code you gave us? 

 

But i can say that your code is very smart because you include decimation and the clock devider for the (i_ds_clk_out). 

 

 

Please explain 2-3 things about the modes you use, and the clocks' frequencies!! 

 

Thank you
0 Kudos
Reply