Merge pull request #6 from ytakeuch/dot11zynq

fix unsigned signals to signed signals
This commit is contained in:
Jiao Xianjun 2023-01-28 12:00:50 +01:00 committed by GitHub
commit 19acdbe82f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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