Difference between revisions of "MC-Basic:PROCEED"

From SoftMC-Wiki
Jump to: navigation, search
(AXY: new links)
 
Line 1: Line 1:
{{Languages}}
+
{{Languages|MC-Basic:PROCEED}}
  
 
{{MC-Basic
 
{{MC-Basic
Line 39: Line 39:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[AXY:MC-Basic:axis.PROCEEDTYPE|axis.PROCEEDTYPE]]
+
* [[MC-Basic:element.PROCEEDTYPE|PROCEEDTYPE]]
* [[AXY:MC-Basic:group.PROCEEDTYPE|group.PROCEEDTYPE]]
 
 
* [[MC-Basic:STOP|STOP]]
 
* [[MC-Basic:STOP|STOP]]
  
  
 
}}
 
}}

Latest revision as of 12:12, 13 September 2017

Language: English  • 中文(简体)‎

This command is required to continue executing motion after that motion had been stopped by a STOP command from a different context. Thus PROCEED is not required when the STOP command appears in the same task as the move commands, but it is required when the STOP command is issued by a task other than the one moving the axis or group. <proceed type> can be:
       1 (Continue)
       2 (NextMotion)
       3 (ClearMotion)

Syntax

Proceed <group | axis> {ProceedType=<proceed type>}

Availability

All versions

Type

<proceed type>: Long

Range

1 to 3

Default

3

Scope

Task or Terminal

Limitations

If <proceed type> is not specified, the permanent value of the <proceed type> is used, as specified by the PROCEEDTYPE property.

Examples

Proceed XYTable ProceedType = NextMotion

See Also