Difference between revisions of "AXY:Element Synchronization/Design"
(→Element Synchronization Design) |
|||
Line 10: | Line 10: | ||
</gallery> | </gallery> | ||
</center> | </center> | ||
+ | |||
+ | ==Pre-Calculation== | ||
+ | |||
+ | Is done in MotionManager task, initiated by message sent from SyncStart/All commands: | ||
+ | |||
+ | In case of SyncStart we sperately execute MotCalc on every element from the sync-list: | ||
+ | <pre> | ||
+ | FOR element FROM sync-list | ||
+ | element->MotCalc() | ||
+ | NEXT | ||
+ | </pre> |
Revision as of 12:20, 30 January 2012
Element Synchronization Design
Common algorithms to both SyncStart and SyncAll:
Pre-Calculation
Is done in MotionManager task, initiated by message sent from SyncStart/All commands:
In case of SyncStart we sperately execute MotCalc on every element from the sync-list:
FOR element FROM sync-list element->MotCalc() NEXT