Ad9835 errors help

I get these errors when compiling ad9835 program

/**
 * Fixed-frequency sinusoid generator.
 *
 * This example produces a 1MHz sinusoidal signal using the AD9835 class
 * from the Synthesis library.
 */

#include <SPI.h>

#include "AD9835.h"

// We begin by creating the AD9835 object with the pin assignments
// that are used.  If another pinout is used, this must be
// modified.
AD9835 dds(
        7, // FSYNC
        3, // SCLK
        2, // SDATA
        6, // FSEL
        5, // PSEL1
        4, // PSEL0
        50000000 // hzMasterClockFrequency (50MHz)
    );

void setup()
{
    // We must first set up all of our output pins.
    dds.begin();
}

void loop()
{
  

    // We then set the board to produce a 1MHz signal.
    dds.setFrequencyHz(0, 1000000);
    dds.selectFrequencyRegister(0);

    // Without modulation the choice of phase offset does not matter,
    // but we set it to zero for good measure.
    dds.setPhaseDeg(0,0);
    dds.selectPhaseRegister(0);

    // Finally, we turn on the IC.
    dds.enable();
    while(1)
    {
        delay(10);
    }
}
type or paste code here

compile error for arduino uno or compile error for arduino pro mini
, I installed all the libraries but I don't know why, can you help me?

What were the errors?

Your post was MOVED to its current location as it is more suitable

in the tools menu,
board of directors ardunio uno elected,
when compiling, ( compile error for ardunio uno board.)

I doubt that is the whole error

When the error occurs click the "Copy error messages" button in the IDE and paste what is copied here in code tags

yes right, I didn't look at the causes of multiple errors,
I've become a complete rookie,
I have downloaded multiple 9835 libraries,
and SPI.h , I'm overloaded
I'll let you know after I've sorted out these problems, thanks

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.