Difference between revisions of "MC-Basic:axis.MASTERSYNC"

From SoftMC-Wiki
Jump to: navigation, search
(Created page with '{{MC-Basic |SHORT FORM= ''<axis>''.MSYN |SYNTAX= ?''<axis>''.MasterSync |AVAILABILITY= All versions |DESCRIPTION= MASTERSYNC is a read-only axis property indicating whether th…')
 
(AXY: new links)
 
(13 intermediate revisions by 6 users not shown)
Line 1: Line 1:
 +
{{Languages|MC-Basic:axis.MASTERSYNC}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
''<axis>''.MSYN
+
<''axis''>.MSYN
  
 
|SYNTAX=
 
|SYNTAX=
?''<axis>''.MasterSync
+
?<''axis''>.MasterSync
  
 
|AVAILABILITY=
 
|AVAILABILITY=
Line 10: Line 11:
  
 
|DESCRIPTION=
 
|DESCRIPTION=
MASTERSYNC is a read-only axis property indicating whether the speed of the slave is synchronized to the master. This flag is cleared when gearing is enabled and set when synchronization is achieved. Synchronization is achieved when the slave velocity is equal to the master velocity for the first time.
+
MASTERSYNC is a read-only axis property indicating whether the speed of the slave is synchronized to the master. This flag is cleared when gearing is enabled, and set when synchronization is achieved. Synchronization is achieved when the slave velocity is equal to the master velocity for the first time.
  
 
|TYPE=
 
|TYPE=
Line 28: Line 29:
  
 
|LIMITATIONS=
 
|LIMITATIONS=
Read-Only
+
Read only
  
 
|EXAMPLE=
 
|EXAMPLE=
 
If X_Axis.MasterSync Then<br>
 
If X_Axis.MasterSync Then<br>
       Move X_axis x_axis.SlaveLag Absolute = 0
+
::Move X_axis x_axis.SlaveLag Absolute = 0
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:axis.GEARRATIO|axis.GEARRATIO]]
+
* [[MC-Basic:axis.GEARRATIO|axis.GEARRATIO]]
* [[Axystems:MC-Basic:axis.SLAVE|axis.SLAVE]]
+
* [[MC-Basic:element.SLAVE|SLAVE]]
 +
* [[MC-Basic:axis.SLAVEDISABLE|axis.SLAVEDISABLE]]
 +
* [[MC-Basic:axis.SLAVEMAXDEVIATION|axis.SLAVEMAXDEVIATION]]
 +
* [[MC-Basic:axis.MASTERSOURCE|axis.MASTERSOURCE]]
 +
* [[MC-Basic:axis.SLAVELAG|axis.SLAVELAG]]
  
  
 
}}
 
}}

Latest revision as of 12:23, 13 September 2017

Language: English  • 中文(简体)‎

MASTERSYNC is a read-only axis property indicating whether the speed of the slave is synchronized to the master. This flag is cleared when gearing is enabled, and set when synchronization is achieved. Synchronization is achieved when the slave velocity is equal to the master velocity for the first time.

Short form

<axis>.MSYN

Syntax

?<axis>.MasterSync

Availability

All versions

Type

Long

Range

0 or 1

Default

0

Scope

Configuration, Task or Terminal

Limitations

Read only

Examples

If X_Axis.MasterSync Then

Move X_axis x_axis.SlaveLag Absolute = 0

See Also