Difference between revisions of "Waveform Generation with AD9833, and SPI"

From Mech
Jump to navigationJump to search
Line 1: Line 1:
[[Image:AD9833Connsmall.jpg|right]]The AD9833 is a programmable waveform generator capable of creating sine, triangular, or square wave outputs in a frequency range of 0 to 12.5 MHz. It has two frequency registers and two phase registers that can be written to and output from the VOUT pin. This chip is perfectly suited for use with the PIC 18F4520, as it uses SPI communication for its setup and control. A connection diagram for the AD9833 is given to the right. The MCLK pin is tied directly to the oscillator of the PIC, and the three SPI communication lines are connected to three I/O pins on the PIC (in this case pins A1, A2, and A3).
[[Image:AD9833Connsmall.jpg|right]]The AD9833 is a programmable waveform generator capable of creating sine, triangular, or square wave outputs in a frequency range of 0 to 12.5 MHz. It has two 28-bit frequency registers and two 12-bit phase registers that can be written to and output from the VOUT pin. This chip is perfectly suited for use with the PIC 18F4520, as it uses SPI communication for its setup and control. A connection diagram for the AD9833 is given to the right. The MCLK pin is tied directly to the oscillator of the PIC, and the three SPI communication lines are connected to three I/O pins on the PIC (in this case pins A1, A2, and A3).
<br>
<br>
In order to establish communication between the PIC and the AD9833, we need to set up the SPI for the pins we wish to use. The following code should be included in your program.
In order to establish communication between the PIC and the AD9833, we need to set up the SPI for the pins we wish to use. The following code should be included in your program.
Line 11: Line 11:
<br>
<br>
Now that we can talk to the waveform generator, we need to know what it needs to be told to produce what we want. Each of the 16 bits transferred has a meaning, and these meanings are described in the Table below.
Now that we can talk to the waveform generator, we need to know what it needs to be told to produce what we want. Each of the 16 bits transferred has a meaning, and these meanings are described in the Table below.
<br><br>

{| border="1" cellspacing="2" cellpadding="3" align="center"
|-
!Bit!! Significance
|-
|D15,D14(MSB) || 10 = FREQ1 write, 01 = FREQ0 write, 11 = PHASE write, 00 = control write
|-
|D13 ||If D15,D14 = 10 or 01, 0 = individual LSB and MSB write, 1 = both LSB and MSB writes consecutively
|-
| ||If D15,D14 = 11
|-
|.esym||IDE file containing comment information and definitions from header file
|-
|.hex||Programmable output file compatible with all programmers
|-
|.lst||Line by line listing of source code along with generated assembly code
|-
|.pjt||Main project file
|-
|.sta||Memory usage summary (statistics)
|-
|.sym||List of symbols used and their corresponding registers
|-
|.tre||Shows every function used in the source code, and the memory used by each
|-
|}

Revision as of 12:02, 9 December 2008

AD9833Connsmall.jpg

The AD9833 is a programmable waveform generator capable of creating sine, triangular, or square wave outputs in a frequency range of 0 to 12.5 MHz. It has two 28-bit frequency registers and two 12-bit phase registers that can be written to and output from the VOUT pin. This chip is perfectly suited for use with the PIC 18F4520, as it uses SPI communication for its setup and control. A connection diagram for the AD9833 is given to the right. The MCLK pin is tied directly to the oscillator of the PIC, and the three SPI communication lines are connected to three I/O pins on the PIC (in this case pins A1, A2, and A3).


In order to establish communication between the PIC and the AD9833, we need to set up the SPI for the pins we wish to use. The following code should be included in your program.

#use spi(DO = PIN_A3, CLK = PIN_A2, ENABLE = PIN_A1, BITS = 16, MASTER, ENABLE_ACTIVE = 0, MSB_FIRST, IDLE = 1)


The first three arguments determine which three pins we will be using: DO is the "SDATA" pin of the AD9833, CLK is the "SCLK" pin, and ENABLE is the "FSYNC" pin. The next argument states that the max number of bits in one transfer is 16. The next argument specifies that the PIC is the master and the AD9833 is the slave. The AD9833's FSYNC pin is active low, and it accepts the most significant bit (MSB) of each transfer first. The SCLK pin is also specified to be kept high when not in use. After this initial setup, the SPI communication is quite straightforward. We simply use the function spi_xfer() whenever we want to send information via SPI to the AD9833.


Now that we can talk to the waveform generator, we need to know what it needs to be told to produce what we want. Each of the 16 bits transferred has a meaning, and these meanings are described in the Table below.

Bit Significance
D15,D14(MSB) 10 = FREQ1 write, 01 = FREQ0 write, 11 = PHASE write, 00 = control write
D13 If D15,D14 = 10 or 01, 0 = individual LSB and MSB write, 1 = both LSB and MSB writes consecutively
If D15,D14 = 11
.esym IDE file containing comment information and definitions from header file
.hex Programmable output file compatible with all programmers
.lst Line by line listing of source code along with generated assembly code
.pjt Main project file
.sta Memory usage summary (statistics)
.sym List of symbols used and their corresponding registers
.tre Shows every function used in the source code, and the memory used by each