Difference between revisions of "MC-Basic:IDLETASK"

From SoftMC-Wiki
Jump to: navigation, search
m (Text replace - "Write-Only" to "Write only")
m (Text replace - "''<task>''" to "<''task''>")
Line 4: Line 4:
  
 
|SYNTAX=
 
|SYNTAX=
IdleTask {''<task>''}
+
IdleTask {<''task''>}
  
 
|AVAILABILITY=
 
|AVAILABILITY=
Line 18: Line 18:
  
 
|RANGE=
 
|RANGE=
''<task>'': Name of a task that is loaded in memory
+
<''task''>: Name of a task that is loaded in memory
  
 
|UNITS=
 
|UNITS=

Revision as of 12:48, 20 March 2014

This command stops the task at the end of the line currently being executed, and idles all its events. An idled task can be continued (using the CONTINUETASK command) or terminated (using the KILLTASK command).

NOTE-Info.svgNOTE
IDLETASK does not stop the motion currently executing. This is significant because all the events are idled and cannot respond to axis motion.

Short form

ITas

Syntax

IdleTask {<task>}

Availability

All versions

Range

<task>: Name of a task that is loaded in memory

Scope

Task or Terminal

Limitations

Write only. Task must be loaded in memory.

Examples

IdleTask XYrotation.prg

See Also