Forum Discussion
Altera_Forum
Honored Contributor
13 years agohow to connect analog input directly to FPGA Altera board?
hi;
I want to implement Sigma Delta ADC on Altera DE1, i wrote the code and run on QuartusII; now i want to know is it possible to connect the analog input directly to the board? as in my code the input is introduced as signed [7:0] so my original analog input should be converted to the type signed [7:0] before enter the altera cycloneII core is this conversion possible on the board? at the end how can i get my digital output from the board and analyze it? your guidance is very appreciated. thank you12 Replies
- Altera_Forum
Honored Contributor
You need an additional analog to digital converter to capture your analog signal to FPGA. Perhaps you should implement some module in VHDL/Verilog to emulate your analog input? You can analyze your design with Altera's Signal Tap or send the values of interest to PC via RS232 as more advanced option.
- Altera_Forum
Honored Contributor
thanks linas..
you mean i need an off-chip ADC to capture my analog signal signal to FPGA? so any ADC suggested for this effort? - Altera_Forum
Honored Contributor
Terasic has an expansion card with ADC/DAC for DE1 board("Highspeed AD/DA Card"). There should be other vendors too.
- Altera_Forum
Honored Contributor
thanks a lot for your quick response.
- Altera_Forum
Honored Contributor
--- Quote Start --- I want to implement Sigma Delta ADC on Altera DE1, i wrote the code and run on QuartusII; now i want to know is it possible to connect the analog input directly to the board? as in my code the input is introduced as signed [7:0] --- Quote End --- I don't understand the question. A SD ADC would preferably use a 1-bit modulator. Multibit modulators are a principle option in SD design, but they need digital correction and a multibit ADC and DAC to take advantage of the SD principle. See Chapter 8 of delta-sigma data converters, theory, design and simulation, by Schreier et al. I don't believe that you intend to design an analog frontend of similar complexity. I have seen FPGA evaluation boards (from Altera competitors, if I remember right) with a basic first order SD modulator comprised of a RC lowpass and a comparator. The comparator might be even replaced by a LVDS input stage. - Altera_Forum
Honored Contributor
- Altera_Forum
Honored Contributor
I think the example design that FvM recalls is from Lattice Semi
http://www.latticesemi.com/products/intellectualproperty/referencedesigns/simplesigmadeltaadc.cfm One of the newer Altera kits (Stratix V or Cyclone V - I forget which one I saw) has a sigma-delta modulator on it from Analog Devices AD7401: http://www.analog.com/en/analog-to-digital-converters/isolated-ad-converters/ad7401/products/product.html If you really wanted to design at this low-level, then you could use this external modulator and implement the digital side in the FPGA. Edit: Here's where I saw the AD7401 ... http://www.altera.com/literature/ds/ds_1038_doc_mc.pdf Cheers, Dave - Altera_Forum
Honored Contributor
--- Quote Start --- I think the example design that FvM recalls is from Lattice Semi http://www.latticesemi.com/products/intellectualproperty/referencedesigns/simplesigmadeltaadc.cfm One of the newer Altera kits (Stratix V or Cyclone V - I forget which one I saw) has a sigma-delta modulator on it from Analog Devices AD7401: http://www.analog.com/en/analog-to-digital-converters/isolated-ad-converters/ad7401/products/product.html If you really wanted to design at this low-level, then you could use this external modulator and implement the digital side in the FPGA. Edit: Here's where I saw the AD7401 ... http://www.altera.com/literature/ds/ds_1038_doc_mc.pdf Cheers, Dave --- Quote End --- I have Altera Cyclone II; and my supervisor ask me to implement ADC on that; so the circuit introduced in latticesemi could be proper i think. Thanks Dave; - Altera_Forum
Honored Contributor
Thanks Dave;
my supervisor asked me to implement Sigma Delta ADC on "Cyclone II DE1" board; now i want to make sure that does circuit mentioned in latticesemi proper for this goal; if i use an analog comparator off chip with RC network; and design other parts of Sigma Delta ADC on FPGA ? - Altera_Forum
Honored Contributor
--- Quote Start --- my supervisor asked me to implement Sigma Delta ADC on "Cyclone II DE1" board; now i want to make sure that does circuit mentioned in latticesemi proper for this goal; if i use an analog comparator off chip with RC network; and design other parts of Sigma Delta ADC on FPGA ? --- Quote End --- Yes, you can implement the circuit as shown in the Lattice application note. You could use an external comparator or an external LVDS receiver. An external comparator is better, as it will have a wider input voltage tolerance. Regardless of how you perform your 1-bit A-to-D conversion, you need to make sure you restrict the analog signal swing to whatever the receiver can handle. Cheers, Dave