Skip to content

Commit

Permalink
Merge pull request #6 from ytakeuch/dot11zynq
Browse files Browse the repository at this point in the history
fix unsigned signals to signed signals
  • Loading branch information
JiaoXianjun committed Jan 28, 2023
2 parents 5837538 + 7e8b444 commit 19acdbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions verilog/dot11.v
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ module dot11 (
//input [31:0] set_data,

// add ports for register based inputs
input [10:0] power_thres,
input signed [10:0] power_thres,
input [31:0] min_plateau,
input threshold_scale,

// INPUT: RSSI
input [10:0] rssi_half_db,
input signed [10:0] rssi_half_db,
// INPUT: I/Q sample
input [31:0] sample_in,
input sample_in_strobe,
Expand Down

0 comments on commit 19acdbe

Please sign in to comment.