mirror of
https://github.com/jhshi/openofdm.git
synced 2025-04-16 15:09:02 +00:00
Don't catagorize IQ modulation as Q-BPSK or BPSK when I and Q components have the same magnitude
This commit is contained in:
parent
d2d5494f57
commit
84039d7368
@ -691,7 +691,7 @@ always @(posedge clock) begin
|
||||
abs_eq_q <= eq_out_q[15]? ~eq_out_q+1: eq_out_q;
|
||||
if (abs_eq_q > abs_eq_i) begin
|
||||
rot_eq_count <= rot_eq_count + 1;
|
||||
end else begin
|
||||
end else if (abs_eq_q < abs_eq_i) begin
|
||||
normal_eq_count <= normal_eq_count + 1;
|
||||
end
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user