diff options
Diffstat (limited to 'usrp2/top')
-rw-r--r-- | usrp2/top/B100/B100.v | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usrp2/top/B100/B100.v b/usrp2/top/B100/B100.v index 59bed6066..d26d0a0d0 100644 --- a/usrp2/top/B100/B100.v +++ b/usrp2/top/B100/B100.v @@ -147,13 +147,13 @@ module B100 always @(posedge clk_fpga) if(rxsync_0) begin - rx_i <= rx_b; - rx_q <= rx_a; + rx_i <= ~rx_b; + rx_q <= ~rx_a; end else begin - rx_i <= rx_a; - rx_q <= rx_b; + rx_i <= ~rx_a; + rx_q <= ~rx_b; end // ///////////////////////////////////////////////////////////////////////// |