Difference between revisions of "MC-Basic:SYSTEM.PIPEMODE"

From SoftMC-Wiki
Jump to: navigation, search
(3+4)
Line 17: Line 17:
 
0 – Pipe mode is inactive
 
0 – Pipe mode is inactive
  
1 – Position pipe-mode is active. Sys.HostDouble[1]…Sys.HostDouble[8] contain position commands for the respective axes.
+
1 – Position pipe-mode is active. Sys.HostDouble[1]…Sys.HostDouble[128] contain position commands for the respective axes.
  
2 – Position & Velocity pipe-mode is active. Sys.HostDouble[1]…Sys.HostDouble[8] contain position and velocity commands for the respective axes.
+
2 – Position & Velocity pipe-mode is active. Sys.HostDouble[1]…Sys.HostDouble[128] contain position and velocity commands for the respective axes.
  
Sys.VIn contains drive’s operation mode information.
+
3 - Velocity-only pipe-mode. Sys.HostDouble[1]…Sys.HostDouble[128] contain velocity commands for the respective axes.
  
Sys.Vin variable.defines  the Operation modes for each axis are set 0 or  1.
+
4 - TORQ
  
The valid operation modes values are :
 
 
0 – Position operation mode
 
 
1 – Velocity  operation mode
 
  
  

Revision as of 09:23, 12 June 2017

Language: [[::MC-Basic:SYSTEM.PIPEMODE|English]]  • [[::MC-Basic:SYSTEM.PIPEMODE/zh-hans|中文(简体)‎]]

This property defines motion pipe mode type. Pipe mode types:

0 – Pipe mode is inactive

1 – Position pipe-mode is active. Sys.HostDouble[1]…Sys.HostDouble[128] contain position commands for the respective axes.

2 – Position & Velocity pipe-mode is active. Sys.HostDouble[1]…Sys.HostDouble[128] contain position and velocity commands for the respective axes.

3 - Velocity-only pipe-mode. Sys.HostDouble[1]…Sys.HostDouble[128] contain velocity commands for the respective axes.

4 - TORQ

Short form

Sys.PMode

Syntax

Sys.PMode = <expression>

? Sys.PMode

Availability

Since Version 3.6.20

Type

Long

Range

0 , 1 or 2

Default

0

Scope

Config, Task or Terminal

Limitations

  • Engaging sys.pipemode (1 or 2) is not allowed during motion. To leave pipemode, all axes pipemode property must be off.
  • Read only

Examples

Sys.PMode = 1

?Sys.PMode

See Also