diff options
author | RobertWalstab <robert.walstab@gmail.com> | 2020-07-17 13:06:31 +0200 |
---|---|---|
committer | Wade Fife <wade.fife@ettus.com> | 2020-07-18 11:52:58 -0500 |
commit | 4d9c4749c1591bf416aacd429eea2a9d5a9bc5e6 (patch) | |
tree | b02fcb50d53f437727bc3fa958be2b51ee6db3cf /fpga/usrp3 | |
parent | ecd8eec17e225a337f0cc39ec34b4b6ecfb0fef0 (diff) | |
download | uhd-4d9c4749c1591bf416aacd429eea2a9d5a9bc5e6.tar.gz uhd-4d9c4749c1591bf416aacd429eea2a9d5a9bc5e6.tar.bz2 uhd-4d9c4749c1591bf416aacd429eea2a9d5a9bc5e6.zip |
e31x: fpga: connect device_id
Diffstat (limited to 'fpga/usrp3')
-rw-r--r-- | fpga/usrp3/top/e31x/e31x.v | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/fpga/usrp3/top/e31x/e31x.v b/fpga/usrp3/top/e31x/e31x.v index 7f0d159a6..12bf0f3a5 100644 --- a/fpga/usrp3/top/e31x/e31x.v +++ b/fpga/usrp3/top/e31x/e31x.v @@ -251,6 +251,9 @@ module e31x ( wire s_axis_dma_tready; wire s_axis_dma_tvalid; + //Misc + wire [15:0] device_id; + ///////////////////////////////////////////////////////////////////// // // Resets: @@ -923,7 +926,8 @@ module e31x ( .dboard_status(dboard_status), .xadc_readback(32'h0), //Unused .fp_gpio_ctrl(), //Unused - .dboard_ctrl(dboard_ctrl) + .dboard_ctrl(dboard_ctrl), + .device_id(device_id) ); ///////////////////////////////////////////////////////////////////// |