aboutsummaryrefslogtreecommitdiffstats
path: root/host/tests/actions_test.cpp
Commit message (Collapse)AuthorAgeFilesLines
* rfnoc: graph: Add commit/release APIMartin Braun2019-11-261-1/+1
|
* rfnoc: Use RTTI "serialization" for stream commandsMartin Braun2019-11-261-4/+2
| | | | | | | | A small modification to rfnoc::action_info makes it polymorphic, and instead of serializing data structures into a string, this allows creating custom action objects and identifying them via RTTI. The stream command action object is a good example for how to use this, so all the usages of stream command action objects were converted to this scheme.
* rfnoc: Add action APIMartin Braun2019-11-261-0/+81
- Added action_info class - Allow to send actions from node to node - Allow to post actions into nodes - Allow to set default forwarding policies - Added unit tests