aboutsummaryrefslogtreecommitdiffstats
path: root/host/utils/rfnoc/templates/modules/sep_xb_wires.v.mako
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2020-05-01 14:31:11 -0700
committerAaron Rossetto <aaron.rossetto@ni.com>2020-05-05 08:04:50 -0500
commit6a488d32ebd128b0f320863723a6877113bde6dd (patch)
tree81a3bcb6d7d76d86c4406b62bc8ad17ac0b18f5d /host/utils/rfnoc/templates/modules/sep_xb_wires.v.mako
parent24527b39103b756581287f8e9e6082673645b1cd (diff)
downloaduhd-6a488d32ebd128b0f320863723a6877113bde6dd.tar.gz
uhd-6a488d32ebd128b0f320863723a6877113bde6dd.tar.bz2
uhd-6a488d32ebd128b0f320863723a6877113bde6dd.zip
python: Move the rfnoc image builder module under the uhd module
Note: This commit changes nothing to the way the image builder is being called. One can still run rfnoc_image_builder [...] as before. The difference is in the Python guts: Where previously one had to do import rfnoc now the incantation becomes: from uhd import imgbuilder (Note that the submodule uhd.rfnoc already exists for wrapping the RFNoC API into Python, hence the renaming from rfnoc to imgbuilder). This is done for a variety of reasons: - Now, there is only one and exactly one Python module for UHD that contains all the things, as opposed to before where there were two. - The rfnoc and uhd modules were installed in different ways (setuptools vs. CMake); that is now harmonized. This also removes a lot of CMake plumbing. - It is not common to import the rfnoc module for anyone other than rfnoc_image_builder
Diffstat (limited to 'host/utils/rfnoc/templates/modules/sep_xb_wires.v.mako')
-rw-r--r--host/utils/rfnoc/templates/modules/sep_xb_wires.v.mako12
1 files changed, 0 insertions, 12 deletions
diff --git a/host/utils/rfnoc/templates/modules/sep_xb_wires.v.mako b/host/utils/rfnoc/templates/modules/sep_xb_wires.v.mako
deleted file mode 100644
index 4aa7d56bb..000000000
--- a/host/utils/rfnoc/templates/modules/sep_xb_wires.v.mako
+++ /dev/null
@@ -1,12 +0,0 @@
-<%page args="seps"/>\
-\
-%for sep in seps:
- wire [CHDR_W-1:0] xb_to_${sep}_tdata ;
- wire xb_to_${sep}_tlast ;
- wire xb_to_${sep}_tvalid;
- wire xb_to_${sep}_tready;
- wire [CHDR_W-1:0] ${sep}_to_xb_tdata ;
- wire ${sep}_to_xb_tlast ;
- wire ${sep}_to_xb_tvalid;
- wire ${sep}_to_xb_tready;
-%endfor