Announcement

Collapse
No announcement yet.

AD9850 DDS project

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • AD9850 DDS project

    My latest project is about building a simple DDS using a AD9850 board I bought off ebay for only 4 euro. I spent one evening putting together a working 14 MHz sinewave generator controlled with a rotary encoder and an LCD display. All controlled with an arduino UNO and about 70 lines of code.

    Very cool... could this AD9850 be used to build a mulifrequency detector?

    Code:
    // Signal generator demonstration using a AD9850, encoder and 4x16 LCD
    
    // Encoder connections:
    // Middle pin to ground, outside two pins are connected to pins D2 and D3, so interrupts can be used
    
    // AD9850 connections:
    // 13: CLK, 12: FQUP, 11: DATA, 10: RESET
    
    #include <LiquidCrystal.h>
    #include <AH_AD9850.h>
    
    LiquidCrystal lcd(9, 8, 7, 6, 5, 4);
    AH_AD9850 AD9850(13, 12, 11, 10);
    
    int ENC_LEFT=2;
    int ENC_RIGHT=3;
    
    volatile uint8_t pinValues[2] = {0,0};
    volatile unsigned long f = 14000000;
    
    void setup()
    {
      lcd.begin(16, 4);
      AD9850.reset();
    
      // Configure encoder pins as input, turn on pullup resistors
      pinMode(ENC_LEFT, INPUT);
      digitalWrite(ENC_LEFT, HIGH);
      pinMode(ENC_RIGHT, INPUT);
      digitalWrite(ENC_RIGHT, HIGH);
    
      attachInterrupt(0, knob_turned, CHANGE);
      attachInterrupt(1, knob_turned, CHANGE);
    }
    
    void rotary_encoder_change(uint8_t changedPin, uint8_t value)
    {
      pinValues[changedPin] = value;
      // only increment for each 'click' of the dial - when both pins have gone back to 0
      if (value == 0 && pinValues[0] == pinValues[1]) {
        f += ((changedPin) ? 50 : -50);
        AD9850.set_frequency(0,0,f);
      }
    }
    
    void knob_turned()
    {
      delay(1);
      int pin0 = digitalRead(ENC_LEFT);
      int pin1 = digitalRead(ENC_RIGHT);
      if (pin0 != pinValues[0]) {
        rotary_encoder_change(0, pin0);
      } 
      else if (pin1 != pinValues[1]) {
        rotary_encoder_change(1, pin1);
      }
    }
    
    void update_display()
    {
      char buf[17];
    
      int mhz = f/1000000;
      int khz = (f - mhz * 1000000) / 1000;
      int hz = f - mhz * 1000000 - khz * 1000;
      sprintf (buf, "   %d.%03d.%03d", mhz, khz, hz);
      lcd.setCursor(0,0);
      lcd.print(buf);
    
      sprintf (buf, "%ld", f);
      lcd.setCursor(-4,2);
      lcd.print(buf);
    }
    
    void loop()
    {
      update_display();
    }
    Click image for larger version

Name:	DSC00312.jpg
Views:	1
Size:	211.5 KB
ID:	368228Click image for larger version

Name:	DSC00313.jpg
Views:	1
Size:	242.2 KB
ID:	368229Click image for larger version

Name:	DSC00314.jpg
Views:	1
Size:	168.1 KB
ID:	368230

  • #2
    Pretty neat!

    makes me want to dig out my dds board and play with it..

    Comment


    • #3
      I've got a similar looking one, too. It seems nice and clean below 10MHz or so, but the output filter is less than stellar unfortunately! It's good for a lot of things, though it does eat relatively lot of power.

      Comment


      • #4
        Yeah, you need a good low pass filter at higher frequencies. Haven't looked at the power, thanks for the tip.

        Comment


        • #5
          The 9850 is a bit of a power hog, it was a 1st gen DDS chip for ADI. It has been used in a multi-f detector.

          Comment


          • #6
            The datasheet says it needs about 75 mA @5V when running at 125 MHz....

            There is another cheap IC from AD out there: the AD9833. It comes in a 10-lead MSOP package, only needs 5 mA and runs up to 12.5 MHz.

            Comment


            • #7
              Originally posted by Carl-NC View Post
              It has been used in a multi-f detector.
              Thanks Carl, are these multi-f detectors induction balance types? Just wondering how to design a coil for this, considering the different RX/TX phases at different frequencies. Multiple RX/TX coils maybe?

              Comment


              • #8
                The 9833 is the better chip. IB, yes... you want to design a wideband coil which can be somewhat tricky, especially if you try to push it beyond a decade wide.

                Comment


                • #9
                  Of course... it would be non-resonant. So it's just a matter of generating a couple of frequencies and doing accurate phase measurments. I wonder if I could use a AD8302 for this. Just amplify the signal in the RX coil a bit and then measure the phase.

                  Comment


                  • #10
                    That's a bit overkill, IMO, all you really need is a good wideband RX amp and you can usually look at the Lissajous pattern on an oscope (de-null the coil so the preamp signal is large enough). If you want more detail, you can use a simple I/Q demod. Or get an HP3575, I bought one on eBay for $50.

                    Comment


                    • #11
                      Do we really need sine wave to build multi-frequency detector? Most successful and popular multi-frequency detectors using meander instead of sine wave in their non-resonant coils. (Minelab Sovereign/Excalibur, Fisher Quicksilver CZ series) Looks like it is cheaper and easy to process digitally.
                      Attached Files

                      Comment

                      Working...
                      X