aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/rfnoc/block_container.cpp
Commit message (Collapse)AuthorAgeFilesLines
* rfnoc: graph: Initialize properties on all nodes during initMartin Braun2019-11-261-0/+7
| | | | | This will call init_props() on every block after the device initialization is complete, but before control returns to the user.
* rfnoc: Add shutdown feature to blocksMartin Braun2019-11-261-0/+9
| | | | | | | | On destruction, the rfnoc_graph will call shutdown() on all blocks. This allows a safe de-initialization of blocks independent of the lifetime of the noc_block_base::sptr. Also adds the shutdown feature to null_block_control.
* rfnoc: Add detail::block_container_t classMartin Braun2019-11-261-0/+74
This is a storage for the noc_block_base derivatives. It supports finding blocks.