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
AndreiGrozav 2020-07-28 09:08:29 +03:00 committed by AndreiGrozav
parent a7a131cb36
commit d39ed3d4db
1 changed files with 1 additions and 1 deletions

View File

@ -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 &