EVAL-AD7400EB AD [Analog Devices], EVAL-AD7400EB Datasheet - Page 15

no-image

EVAL-AD7400EB

Manufacturer Part Number
EVAL-AD7400EB
Description
Isolated Sigma-Delta Modulator
Manufacturer
AD [Analog Devices]
Datasheet
/*Perform the Sinc ACTION*/
always @ (mdata1)
if(mdata1==0)
to a -1 for 2's comp */
else
/*ACCUMULATOR (INTEGRATOR)
Perform the accumulation (IIR) at the speed
of the modulator.
Z = one sample delay
MCLKOUT = modulators conversion bit rate
*/
always @ (negedge mclk1 or posedge reset)
if (reset)
else
/*DECIMATION STAGE (MCLKOUT/ WORD_CLK)
*/
always @ (posedge mclk1 or posedge reset)
if (reset)
else
always @ (word_count)
/*DIFFERENTIATOR ( including decimation
stage)
Perform the differentiation stage (FIR) at a
lower speed.
WORD_CLK
MCLKOUT
IP_DATA1
ACC3
ip_data1 <= 0;
ip_data1 <= 1;
begin
acc1 <= 0;
acc2 <= 0;
acc3 <= 0;
end
begin
acc1 <= acc1 + ip_data1;
acc2 <= acc2 + acc1;
acc3 <= acc3 + acc2;
end
/*initialize acc registers on reset*/
/*perform accumulation process*/
word_count <= 0;
word_count <= word_count + 1;
word_clk <= word_count[7];
+
Z
–1
Figure 26. Differentiator
Figure 25. Accumulator
Z
+
DIFF1
ACC1+
+
Z
–1
Z
/* change from a 0
+
ACC2+
DIFF2
+
Z
–1
Z
+
ACC3
DIFF3
Rev. A | Page 15 of 20
Z = one sample delay
WORD_CLK = output word rate
*/
always @ (posedge word_clk or posedge reset)
if(reset)
else
/* Clock the Sinc output into an output
register
WORD_CLK = output word rate
*/
always @ (posedge word_clk)
begin
DATA[15] <= diff3[23];
DATA[14] <= diff3[22];
DATA[13] <= diff3[21];
DATA[12] <= diff3[20];
DATA[11] <= diff3[19];
DATA[10] <= diff3[18];
DATA[9]
DATA[8]
DATA[7]
DATA[6]
DATA[5]
DATA[4]
DATA[3]
DATA[2]
DATA[1]
DATA[0]
end
endmodule
begin
acc3_d2 <= 0;
diff1_d <= 0;
diff2_d <= 0;
diff1 <= 0;
diff2 <= 0;
diff3 <= 0;
end
begin
diff1 <= acc3 - acc3_d2;
diff2 <= diff1 - diff1_d;
diff3 <= diff2 - diff2_d;
acc3_d2 <= acc3;
diff1_d <= diff1;
diff2_d <= diff2;
end
Figure 27. Clocking Sinc Output into an Output Register
<= diff3[17];
<= diff3[16];
<= diff3[15];
<= diff3[14];
<= diff3[13];
<= diff3[12];
<= diff3[11];
<= diff3[10];
<= diff3[9];
<= diff3[8];
WORD_CLK
DIFF3
DATA
AD7400

Related parts for EVAL-AD7400EB