axi_dac_interpolate: Fix oversampling by 2
When using an oversampling of 2 for axi_dac_interpolate the rate was the same as with oversampling by 1(bypassing). This commit removes the bypass for the ratio of 2.main
parent
a7a131cb36
commit
d39ed3d4db
|
@ -133,7 +133,7 @@ module axi_dac_interpolate_filter #(
|
|||
// paths randomly ready, only when using data buffers
|
||||
|
||||
always @(posedge dac_clk) begin
|
||||
if (interpolation_ratio == 0 || interpolation_ratio == 1) begin
|
||||
if (interpolation_ratio == 0) begin
|
||||
dac_int_ready <= dac_filt_int_valid;
|
||||
end else begin
|
||||
if (dac_filt_int_valid &
|
||||
|
|
Loading…
Reference in New Issue