aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/rfnoc/noc_block_base.cpp
Commit message (Collapse)AuthorAgeFilesLines
* rfnoc: noc_block_base: Handle the tick_rate property internallyMartin Braun2019-11-261-1/+61
| | | | | | | | | | | All noc_block_base derivatives are now plugged into the tick rate system. Connected nodes can only have one tick rate among them. This implies there is also only ever one tick rate per block. set_tick_rate() is a protected API call which can be called by blocks such as radio blocks to actually set a tick rate. Other blocks would only ever read the tick rate, which is handled by the get_tick_rate() API call.
* rfnoc: Add block registry/factory and make_argsMartin Braun2019-11-261-0/+18
| | | | | | - noc_block_base now has a ctor defined - The registry stores factory functions to the individual Noc-Block implementations
* rfnoc: Add noc_block_base classMartin Braun2019-11-261-0/+11
This is a parent class for all block controllers.