Difference between revisions of "EtherCAT:EC IS PDO"

From SoftMC-Wiki
Jump to: navigation, search
(Created page with "{{Template:EtherCAT-Function |DESCRIPTION= This subroutine checks the existence of a PDO in a certain slave.<br/> |INPUT= Slave address, PDO index, PDO sub-index. |OUTPUT= ...")
 
Line 2: Line 2:
  
 
|DESCRIPTION=
 
|DESCRIPTION=
This subroutine checks the existence of a PDO in a certain slave.<br/>
+
This subroutine whether object (index/subindex) is mapped into a PDO in a certain slave.<br/>
  
 
|INPUT=
 
|INPUT=
Line 11: Line 11:
  
 
|RETURN VALUE=
 
|RETURN VALUE=
1 if PDO exists, 0 otherwise.
+
1 if object mapped to PDO, 0 otherwise.
  
 
|DECLARATION=
 
|DECLARATION=

Revision as of 10:17, 15 June 2014

This subroutine whether object (index/subindex) is mapped into a PDO in a certain slave.

Input

Slave address, PDO index, PDO sub-index.

Output

None

Return Value

1 if object mapped to PDO, 0 otherwise.

Declaration

public function EC_IS_PDO(byval slaveAddr as long,byval index as long,byval subindex as long) as long

Syntax

retVal = EC_IS_PDO(<Slave address>, <PDO index>, <PDO sub-index>)

Examples

retVal = EC_IS_PDO(2, 0x20f1, 0)

See Also