Skip to content

Commit

Permalink
fpga: rfnoc: fft: Fix tready on magnitude path
Browse files Browse the repository at this point in the history
The tready signal that was used when EN_MAGNITUDE equals 0 was not
correct. This commit allows EN_MAGNITUDE to be disabled.
  • Loading branch information
wordimont authored and joergho committed Jan 21, 2025
1 parent ba01ba2 commit 6509d1d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ module fft_post_processing #(
assign mag_out_tdata = '0;
assign mag_out_tlast = '0;
assign mag_out_tvalid = '0;
assign s_axis_tready = '1;
assign mag_in_tready = '1;
end

//---------------------------------------------------------------------------
Expand Down

0 comments on commit 6509d1d

Please sign in to comment.