From 5bba9d498db797ae3dccb6a285ec3ecaabe7fe11 Mon Sep 17 00:00:00 2001 From: Jie Feng Date: Mon, 4 Nov 2024 21:52:36 +0800 Subject: [PATCH] Fix bug --- hsdaoh_nano9k_1bit_sdr/top.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hsdaoh_nano9k_1bit_sdr/top.v b/hsdaoh_nano9k_1bit_sdr/top.v index c4f077a..bca64c6 100644 --- a/hsdaoh_nano9k_1bit_sdr/top.v +++ b/hsdaoh_nano9k_1bit_sdr/top.v @@ -183,7 +183,7 @@ module top ( always @(posedge clk_data) begin counter <= counter + 1'b1; if (counter == 0) begin - accumulator <= rf_in_1bit; + accumulator <= rf_in_1bit_q0 + rf_in_1bit_q1; fifo_in <= accumulator; end else begin accumulator <= accumulator + rf_in_1bit_q0 + rf_in_1bit_q1;