summaryrefslogtreecommitdiffstats
path: root/usrp2/top/u1e/u1e.v
diff options
context:
space:
mode:
authorMatt Ettus <matt@ettus.com>2010-05-04 15:06:03 -0700
committerMatt Ettus <matt@ettus.com>2010-05-04 15:06:03 -0700
commit2ddaba2d8bdcdda07b949f007d2555cf57c7c8d7 (patch)
treedf0066d522db5560b23acd3a6babfc283818c66a /usrp2/top/u1e/u1e.v
parent71fd685d0b33d2d6d057d2b30a28d535cf2b2159 (diff)
downloaduhd-2ddaba2d8bdcdda07b949f007d2555cf57c7c8d7.tar.gz
uhd-2ddaba2d8bdcdda07b949f007d2555cf57c7c8d7.tar.bz2
uhd-2ddaba2d8bdcdda07b949f007d2555cf57c7c8d7.zip
added DAC output pins, and a sine wave generator to test them
Diffstat (limited to 'usrp2/top/u1e/u1e.v')
-rw-r--r--usrp2/top/u1e/u1e.v4
1 files changed, 4 insertions, 0 deletions
diff --git a/usrp2/top/u1e/u1e.v b/usrp2/top/u1e/u1e.v
index 2ed6b71c8..35818e8c8 100644
--- a/usrp2/top/u1e/u1e.v
+++ b/usrp2/top/u1e/u1e.v
@@ -25,6 +25,9 @@ module u1e
input overo_gpio128, input overo_gpio163, input overo_gpio170, input overo_gpio176, // Misc GPIO
inout [15:0] io_tx, inout [15:0] io_rx,
+
+ output [13:0] TX, output TXSYNC, output TXBLANK,
+
input PPS_IN
);
@@ -56,6 +59,7 @@ module u1e
.tx_have_space(overo_gpio144), .tx_underrun(overo_gpio145),
.rx_have_data(overo_gpio146), .rx_overrun(overo_gpio147),
.io_tx(io_tx), .io_rx(io_rx),
+ .tx(TX), .txsync(TXSYNC), .txblank(TXBLANK),
.misc_gpio( {{overo_gpio128,overo_gpio163,overo_gpio170,overo_gpio176},
{overo_gpio0,overo_gpio14,overo_gpio21,overo_gpio22},
{overo_gpio23,overo_gpio64,overo_gpio65,overo_gpio127}}),