Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > VHDL > Digital Down synthetizer

Reply
Thread Tools

Digital Down synthetizer

 
 
Juan Carlos Allica
Guest
Posts: n/a
 
      07-07-2005
hello all

i am tring to create a DDS in fpga but i am wondering if a can because:

the precision i need is too big so my look up table it is 20 address bits
and 15 bits wide ?
And in the case i could, how should be my code to make this huge memory
synthesizable now iam using files to simulate but that are not synthe .. ?

thanks in advance


 
Reply With Quote
 
 
 
 
john
Guest
Posts: n/a
 
      07-07-2005

Hello,

What is DDS?

Regards
john
Juan Carlos Allica wrote:
> hello all
>
> i am tring to create a DDS in fpga but i am wondering if a can because:
>
> the precision i need is too big so my look up table it is 20 address bits
> and 15 bits wide ?
> And in the case i could, how should be my code to make this huge memory
> synthesizable now iam using files to simulate but that are not synthe .. ?
>
> thanks in advance


 
Reply With Quote
 
 
 
 
Juan Carlos Allica
Guest
Posts: n/a
 
      07-08-2005
Sorry a DDS is a digital down synthesizer by mean this you can create any
freq sin or cosine wave, it uses the phase in the digital domain and convert
it to analog domain by mean a look up table which I don't know how to create
this mem in a fpga .

Cheers

"Juan Carlos Allica" <> wrote in message
news:dajgto$qfc$...
> hello all
>
> i am tring to create a DDS in fpga but i am wondering if a can because:
>
> the precision i need is too big so my look up table it is 20 address bits
> and 15 bits wide ?
> And in the case i could, how should be my code to make this huge memory
> synthesizable now iam using files to simulate but that are not synthe .. ?
>
> thanks in advance
>



 
Reply With Quote
 
Jonathan Bromley
Guest
Posts: n/a
 
      07-08-2005
On Thu, 7 Jul 2005 17:15:05 +0200, "Juan Carlos Allica"
<> wrote:


>i am tring to create a DDS in fpga but i am wondering if a can because:
>the precision i need is too big so my look up table it is 20 address bits
>and 15 bits wide ?


From your later response I see that you're trying to create a
sinusoid rather than an arbitrary waveform, so you have many
options.

First, if the required precision is only 15 bits, you surely don't
need all 20 bits of address into the table!

Second, you can reduce the size of the table by a factor of 4
easily by dividing the 20-bit phase range into four quadrants.
You need a 2s complement negate operation on both address and
data, but otherwise it's easy.

Finally, you can use something a bit more clever than a
simple lookup table. There are two obvious possibilities:
CORDIC and interpolation.

CORDIC is so well covered by material on Ray Andraka's website
www.andraka.com that I won't even try to describe it here.

Interpolation is a useful idea. You know, of course, that
the first derivative of (sin) is (cos), which is simply (sin)
displaced by a quarter of a cycle. So, given a phase value
P, rewrite P = P0 + dP by the cunning trick of splitting the
address binary word into two equal pieces. Now you can make
the approximation

sin(P) = sin(P0) + cos(P0).dP

cos(P0) is only a second lookup in the table. You need a
multiplier and an adder, of course. And there's some scaling
to be done.

Other possibilities include creating a very approximate sine
wave and then passing it through a digital lowpass filter
whose sample rate is also controlled by the DDS.
--
Jonathan Bromley, Consultant

DOULOS - Developing Design Know-how
VHDL, Verilog, SystemC, Perl, Tcl/Tk, Verification, Project Services

Doulos Ltd. Church Hatch, 22 Market Place, Ringwood, BH24 1AW, UK
Tel: +44 (0)1425 471223 mail:
Fax: +44 (0)1425 471573 Web: http://www.doulos.com

The contents of this message may contain personal views which
are not the views of Doulos Ltd., unless specifically stated.
 
Reply With Quote
 
james
Guest
Posts: n/a
 
      07-09-2005
On Fri, 8 Jul 2005 09:27:51 +0200, "Juan Carlos Allica"
<> wrote:

>+<Sorry a DDS is a digital down synthesizer by mean this you can create any
>+<freq sin or cosine wave, it uses the phase in the digital domain and convert
>+<it to analog domain by mean a look up table which I don't know how to create
>+<this mem in a fpga .
>+<
>+<Cheers
>+<

*****

I thought "DDS" stood for Direct Digital Synthesis?

james


>+<"Juan Carlos Allica" <> wrote in message
>+<news:dajgto$qfc$...
>+<> hello all
>+<>
>+<> i am tring to create a DDS in fpga but i am wondering if a can because:
>+<>
>+<> the precision i need is too big so my look up table it is 20 address bits
>+<> and 15 bits wide ?
>+<> And in the case i could, how should be my code to make this huge memory
>+<> synthesizable now iam using files to simulate but that are not synthe .. ?
>+<>
>+<> thanks in advance
>+<>
>+<


 
Reply With Quote
 
Juan Carlos Allica
Guest
Posts: n/a
 
      07-11-2005
u r right sorry.

"james" <> wrote in message
news:...
> On Fri, 8 Jul 2005 09:27:51 +0200, "Juan Carlos Allica"
> <> wrote:
>
>>+<Sorry a DDS is a digital down synthesizer by mean this you can create
>>any
>>+<freq sin or cosine wave, it uses the phase in the digital domain and
>>convert
>>+<it to analog domain by mean a look up table which I don't know how to
>>create
>>+<this mem in a fpga .
>>+<
>>+<Cheers
>>+<

> *****
>
> I thought "DDS" stood for Direct Digital Synthesis?
>
> james
>
>
>>+<"Juan Carlos Allica" <> wrote in message
>>+<news:dajgto$qfc$...
>>+<> hello all
>>+<>
>>+<> i am tring to create a DDS in fpga but i am wondering if a can
>>because:
>>+<>
>>+<> the precision i need is too big so my look up table it is 20 address
>>bits
>>+<> and 15 bits wide ?
>>+<> And in the case i could, how should be my code to make this huge
>>memory
>>+<> synthesizable now iam using files to simulate but that are not synthe
>>.. ?
>>+<>
>>+<> thanks in advance
>>+<>
>>+<

>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
New to .NET, can I have one drop down box control the data of another drop down box using a database? SirPoonga ASP .Net 2 01-07-2005 10:44 PM
1700 series: S0 is up 2 hours, down 2 hours, up, down, arghgh! Ivan Cisco 11 10-14-2004 08:41 AM
Digital Photography RFD: rec.photo.digital.slr vs rec.photo.digital.slr-systems? Lionel Digital Photography 16 09-17-2004 12:48 PM
Digital prices coming down for Nikon digital? Phil Stripling Digital Photography 11 01-10-2004 12:57 PM
how change from down to up to up to down einstein Java 1 09-28-2003 04:20 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57