Skip to content
Snippets Groups Projects
Commit c0e21926 authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer
Browse files

added some proposed notations as comments which are not yet implemented

parent b3ed96cb
No related branches found
No related tags found
No related merge requests found
......@@ -112,6 +112,13 @@ class MyApp : public ctk::Application {
simulator.readback >> controlLoop.readback >> cs("readback") >> cs("readback_another_time");
// Proposed notations and special cases (not yet implemented):
// dev("Some2DRegister") [ triggerVariable ] >> ( Channel(0) >> cavity0.probe, Channel(1) >> cavity1.probe );
// dev("SomeBitField") [ triggerVariable ] >> ( Bit(0) >> myModule.someBoolean, Bit(31) >> anotherModule.yesOrNo );
// cs("SomeVector") >> ( Element(3) >> myModule.someScalar, Elements(4,2) >> myModule.smallVector );
// dev("Variable") [ cs("myFirstTrigger") ] >> myModuleA.Variable;
// dev("Variable") [ cs("mySecondTrigger") ] >> myModuleB.Variable;
dumpConnections();
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment