uhd/host/examples/rfnoc-example
Martin Braun e31b16a07c rfnoc-example: Removed DRAM from image core
The DRAM was incorrectly connected, but it's also not necessary for this
example and is hence removed.
2020-05-05 08:04:50 -05:00
..
apps examples: Add example out-of-tree module for RFNoC modules 2019-11-26 12:21:32 -08:00
blocks examples: Add example out-of-tree module for RFNoC modules 2019-11-26 12:21:32 -08:00
cmake examples: Add example out-of-tree module for RFNoC modules 2019-11-26 12:21:32 -08:00
fpga examples: Update gain block testbench to use samples 2020-03-09 13:43:05 -05:00
icores rfnoc-example: Removed DRAM from image core 2020-05-05 08:04:50 -05:00
include/rfnoc/example examples: Add example out-of-tree module for RFNoC modules 2019-11-26 12:21:32 -08:00
lib uhd: Apply clang-format against all .cpp and .hpp files in host/ 2020-03-03 08:51:32 -06:00
.gitignore examples: Add example out-of-tree module for RFNoC modules 2019-11-26 12:21:32 -08:00
CMakeLists.txt examples: Add example out-of-tree module for RFNoC modules 2019-11-26 12:21:32 -08:00
README.md examples: Add example out-of-tree module for RFNoC modules 2019-11-26 12:21:32 -08:00

RFNoC: An example out-of-tree module

This directory contains a fully functional out-of-tree module with a gain block. It serves as an example for OOT modules with UHD 4.0 and above.

Directory Structure

  • blocks: This directory contains all the block definitions. These block definitions can be read by the RFNoC tools, and will get installed into the system for use by other out-of-tree modules.

  • cmake: This directory only needs to be modified if this OOT module will come with its own custom CMake modules.

  • fpga: This directory contains the source code for the HDL modules of the individual RFNoC blocks, along with their testbenches, and additional modules required to build the blocks. There is one subdirectory for every block.

  • include/rfnoc/example: Here, all the header files for the block controllers are stored, along with any other include files that should be installed when installing this OOT module.

  • lib: Here, all the non-header source files for the block controllers are stored, along with any other include file that should be installed when installing this OOT module. This includes the block controller cpp files.

  • apps: This contains an example application that links against UHD and this OOT module. The app does not get installed, it resides in the build directory.