Difference between revisions of "AXY:MC-Basic:group.STARTTYPE"
m (Miborich moved page Axystems:MC-Basic:group.STARTTYPE to MC-Basic:group.STARTTYPE: Global renaming of Axystems: namespace into (Main):) |
|||
Line 58: | Line 58: | ||
}} | }} | ||
− | [[Category | + | [[Category:Synchronization]] |
Revision as of 09:20, 22 May 2014
This property determines the point in time at which the next motion command begins. It is relevant when a motion command is issued while a previous motion command is still being executed. The INPOSITION option is the most stringent condition for motion completion.
This property is used inside a motion command to override the permanent value.
- 1 (IMMEDIATE): The motion command is executed immediately from the system current position does not wait for the current motion command to complete. The current move is cancelled and any buffered move is delayed until the IMMEDIATE command is executed.
- 2 (INPOSITION): The motion command is executed when the ISSETTLED flag is set. This means the system accomplished its previous motion and reached the required position.
- 3 (GENERATORCOMPLETED): The motion command executes when the profiler has completed the generation of the last motion command reference.
- 4 (SYNC): The start of the motion is synchronized by the SYNCSTART command.
- 5 (SUPERIMMEDIATE): Similar to IMMEDIATE, but the computation of the command is done in realtime rather than in the background.
The INPOSITION option is the most stringent condition for motion completion. This property is used inside a motion command to override the permanent value
Syntax
<group>.StartType = <expression>
?<group>.StartType
Availability
All versions
Type
Long
Range
1 to 5
Default
3
Scope
Configuration, Task or Terminal
Limitations
This property cannot be used within a motion command. To set the value within a task, the group must be attached to that task (using the ATTACH command).
Examples
Group1.StartType = InPosition
Move Group1 {100, 200} StartType = Immed