- Apr 05, 2017
-
-
Martin Christoph Hierholzer authored
- allow setting the "eliminateHierarchy" flag in the constructor of a module This is an interface change which was done in an incompatible way!
-
Martin Christoph Hierholzer authored
-
- Mar 21, 2017
-
-
Martin Christoph Hierholzer authored
-
- Mar 06, 2017
-
-
Martin Christoph Hierholzer authored
-
- Mar 03, 2017
-
-
Martin Christoph Hierholzer authored
-
- Feb 22, 2017
-
-
Martin Christoph Hierholzer authored
made the instance of the Application::testableMode_mutex static, since otherwise the unique_locks returned are no longer valid in any but the first instance of the application (which affects tests)
-
Martin Christoph Hierholzer authored
fixed race condition in testable mode: now stepApplication() will use a semaphore counter to ensure that all processing is done
-
- Feb 21, 2017
-
-
Martin Christoph Hierholzer authored
-
- Feb 20, 2017
-
-
Martin Christoph Hierholzer authored
implement the "testable mode" in which the application can be paused and resumed by the test routine
-
Martin Christoph Hierholzer authored
Added a TestDecoratorRegisterAccessor which is optionally put around accessors to facilitate test of applications. This TestDecoratorRegisterAccessor does not yet do anything, functionality will be added in the next commits.
-
- Feb 16, 2017
-
-
Martin Christoph Hierholzer authored
-
- Feb 13, 2017
-
-
Martin Christoph Hierholzer authored
-
Martin Christoph Hierholzer authored
fixed variable networks with external trigger not being put into the same TriggerFanOut (which is required since they should be in the same TransferGroup)
-
- Feb 10, 2017
-
-
Martin Christoph Hierholzer authored
- add all networks triggered from the same node to the same TriggerFanOut - put all feeding nodes in a TriggerFanOut into the same TransferGroup
-
Martin Christoph Hierholzer authored
- some more code cleaning
-
- Feb 08, 2017
-
-
Martin Christoph Hierholzer authored
-
- Nov 23, 2016
-
-
Martin Christoph Hierholzer authored
-
- Nov 18, 2016
-
-
Martin Christoph Hierholzer authored
-
- Nov 16, 2016
-
-
Martin Christoph Hierholzer authored
-
- Nov 15, 2016
-
-
Martin Christoph Hierholzer authored
Added names and owners for modules, to build a full hierarchy chain. The syntax for creating modules is now not so nice, a better way has to be found (maybe by adding a macro if better solution can be found).
-
- Nov 14, 2016
-
-
Martin Christoph Hierholzer authored
Read all application inputs once before starting the module threads, so the initial values are correctly present. For this purpose, additional changes were necessary: - Added support for constant values as feeders and consumers (just ignore the writes) - Connect all unconnected application accessors to constants after defining the connections and before creating the implementations - Renamed the user-overridden function "initialise()" into "defineConnections()", since more actions are now necessary during initialise(). - The connections are now made (i.e. the implementations are created) during the initialisation phase
-
- Nov 11, 2016
-
-
Martin Christoph Hierholzer authored
moved VariableNetworkNode member to AccessorBase class, so the network node information can be accessed also when having only the pointer to the base class
-
Martin Christoph Hierholzer authored
-
- Nov 09, 2016
-
-
Martin Christoph Hierholzer authored
-
- Nov 04, 2016
-
-
Martin Christoph Hierholzer authored
Adapation to the unified versions of ControlSystemAdapter and DeviceAccess. Status: Library compiles, tests do not yet compile.
-
- Jul 11, 2016
-
-
Martin Christoph Hierholzer authored
-
- Jun 30, 2016
-
-
Martin Christoph Hierholzer authored
- extended the trigger tests - removed some debug output
-
- Jun 29, 2016
-
-
Martin Christoph Hierholzer authored
-
- Jun 28, 2016
-
-
Martin Christoph Hierholzer authored
Introduced the DeviceModule class which provides an interface to obtain VariableNetworkNodes for device registers
-
- Jun 24, 2016
-
-
Martin Christoph Hierholzer authored
- performed some code cleaning and refactoring - store all nodes in a VariableNetwork in a single list, to allow deciding later if a node is feeding or consuming This commit is an intermediate commit and has known bugs. Almost all tests are failing and the demoApp is not running. Debugging will be done in a next step.
-
Martin Christoph Hierholzer authored
introduced an operator>> and operator<< syntax to connect network nodes. to realise this, the VariableNetworkNode class has been changed into a pimpl pattern.
-
Martin Christoph Hierholzer authored
-
Martin Christoph Hierholzer authored
Allow to make connections directly based on VariableNetworkNodes. This is a first step, more changes have to be made in this direction.
-
- Jun 22, 2016
-
-
Martin Christoph Hierholzer authored
-
Martin Christoph Hierholzer authored
- fixed a bug in the FanOut which did not wait for the trigger (since ProcessScalar::receive() does not wait) - fixed a bug in Application::feedDeviceRegisterToControlSystem() not handling the last arugment (trigger) properly - improved the output produced with VariableNetwork::dump()
-
- Jun 21, 2016
-
-
Martin Christoph Hierholzer authored
added also the consumer-type variables to the XML file
-
- Jun 17, 2016
-
-
Martin Christoph Hierholzer authored
Intermediate commit before the weekend: added options to add an external trigger to a network to handle poll and push properly. Currently it does not work properly.
-
Martin Christoph Hierholzer authored
renamed publishDeviceReadRegister() and publishDeviceWriteRegister() into feedDeviceRegisterToControlSystem() and consumeDeviceRegisterFromControlSystem()
-
Martin Christoph Hierholzer authored
renamed publish() and connectToDevice() into more specific feedToControlSystem()/consumeFromControlSyste() and feedToDevice()/consumeFromDevice()
-
- Jun 16, 2016
-
-
Martin Christoph Hierholzer authored
-