Skip to content

Commit 03043f7

Browse files
committedApr 19, 2024
axi_ad9963: Fix TxQ 1 sample delay compared to TxI
For ODDR in "SAME_EDGE" mode. Signed-off-by: AndreiGrozav <andrei.grozav@analog.com>
1 parent a23ed6f commit 03043f7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎library/axi_ad9963/axi_ad9963_if.v

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ***************************************************************************
22
// ***************************************************************************
3-
// Copyright (C) 2014-2023 Analog Devices, Inc. All rights reserved.
3+
// Copyright (C) 2014-2024 Analog Devices, Inc. All rights reserved.
44
//
55
// In this HDL repository, there are many different and unique modules, consisting
66
// of various HDL (Verilog or VHDL) components. The individual modules are
@@ -228,8 +228,8 @@ module axi_ad9963_if #(
228228
.R (dac_rst),
229229
.S (1'b0),
230230
.C (dac_clk),
231-
.D1 (tx_data_p[l_inst]),
232-
.D2 (tx_data_n[l_inst]),
231+
.D1 (tx_data_n[l_inst]),
232+
.D2 (tx_data_p[l_inst]),
233233
.Q (tx_data[l_inst]));
234234
end
235235
endgenerate
@@ -243,8 +243,8 @@ module axi_ad9963_if #(
243243
.R (dac_rst),
244244
.S (1'b0),
245245
.C (dac_clk),
246-
.D1 (1'b1),
247-
.D2 (1'b0),
246+
.D1 (1'b0),
247+
.D2 (1'b1),
248248
.Q (tx_iq));
249249

250250
endmodule

0 commit comments

Comments
 (0)