From 1a9246fd24ea26ebf1b91fe7fd9e4b35100384d3 Mon Sep 17 00:00:00 2001 From: mmehari Date: Tue, 4 Jan 2022 22:00:55 +0100 Subject: [PATCH] Provide ht_aggregation signal out --- verilog/openofdm_rx.v | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/verilog/openofdm_rx.v b/verilog/openofdm_rx.v index 521f462..b3a0eee 100644 --- a/verilog/openofdm_rx.v +++ b/verilog/openofdm_rx.v @@ -25,6 +25,7 @@ output wire ht_unsupport, output wire [7:0] pkt_rate, output wire [15:0] pkt_len, + output ht_aggregation, output wire ht_sgi, // output wire [15:0] pkt_len_total, // for interface to byte_to_word.v in rx_intf.v output wire byte_out_strobe, @@ -181,7 +182,7 @@ .ht_len(), .ht_smoothing(), .ht_not_sounding(), - .ht_aggregation(), + .ht_aggregation(ht_aggregation), .ht_stbc(), .ht_fec_coding(), .ht_sgi(ht_sgi),