Difference between revisions of "EtherCAT:EC PDO WRITE"

From SoftMC-Wiki
Jump to: navigation, search
m (Miborich moved page Axystems:EtherCAT:EC PDO WRITE to EtherCAT:EC PDO WRITE: Global renaming of Axystems: namespace into (Main):)
m
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Axystems:Template:EtherCAT-Function
+
{{Languages|EtherCAT:EC_PDO_WRITE}}
 +
{{Template:EtherCAT-Function
  
 
|DESCRIPTION=
 
|DESCRIPTION=
While the system is running we are able to read and write specific PDOS <u>without interfering</u> with the realtime functionality<br/>
+
While the system is running, you can read from and write to PDOs ''without interfering'' with the real-time functionality of the system.<br/>
of the system.<br/>
 
 
This subroutine writes a value to a specific PDO within the current cycle.
 
This subroutine writes a value to a specific PDO within the current cycle.
  
Line 32: Line 32:
 
|SEE ALSO=
 
|SEE ALSO=
 
* [[EtherCAT:EC PDO READ|EC_PDO_READ]]
 
* [[EtherCAT:EC PDO READ|EC_PDO_READ]]
* [[Axystems:EtherCAT:EC_SDO_READ|EC_SDO_READ]]
+
* [[EtherCAT:EC PDO READ N|EC_PDO_READ_N]]
* [[Axystems:EtherCAT:EC_SDO_WRITE|EC_SDO_WRITE]]
+
* [[EtherCAT:EC SDO READ|EC_SDO_READ]]
 +
* [[EtherCAT:EC SDO WRITE|EC_SDO_WRITE]]
  
 
}}
 
}}

Latest revision as of 14:05, 6 May 2017

Language: English  • 中文(简体)‎

While the system is running, you can read from and write to PDOs without interfering with the real-time functionality of the system.
This subroutine writes a value to a specific PDO within the current cycle.

Input

Slave address, PDO index, PDO sub-index, new value to be written.

Output

None

Return Value

Void

Declaration

public sub EC_PDO_WRITE(byval slaveaddress as long, byval index as long, byval subindex as long, byval new_val as long)

Syntax

call EC_PDO_WRITE(<Slave address>, <PDO index>, <PDO sub-index>, <new value>)

Exceptions

EC_SLAVE_ADDRESS_ERROR - "SLAVE ADDRESS ERROR" 20032
EC_PDO_PARMS_ERROR - "INVAILD PDO PARAMETERS" 20040
EC_PDO_DIRECTION_ERROR - "PDO WRONG DIRECTION (INPUT/OUTPUT)" 20046

Examples

call EC_PDO_WRITE(2, 0x6071,0, 5) ' Write VCMD PDO

See Also