Difference between revisions of "EtherCAT:EC USER PREOP CONFIG"

From SoftMC-Wiki
Jump to: navigation, search
Line 9: Line 9:
 
<br/>
 
<br/>
 
|INPUT=
 
|INPUT=
Slave address, SDO index, SDO sub-index, Variable size (32 or 64 bits).
+
Slave address
  
 
|OUTPUT=
 
|OUTPUT=
Line 15: Line 15:
  
 
|RETURN VALUE=
 
|RETURN VALUE=
Value that is read from the slave.
+
0 on success, -1 if failed. The user can change that.
  
 
|DECLARATION=
 
|DECLARATION=

Revision as of 15:32, 4 January 2015

EtherCAT slaves configuration is done carefully because some configurations must be carried out while the slaves are still in PREOP mode and some configurations are done when the slaves are in SAFEOP mode.
This function and its counterpart EC_USER_SAFEOP_CONFIG and EC_USER_OP_CONFIG are implemented in the library EC_USER.LIB. The purpose of these functions is to allow the user add his own code in order to conduct specific configuration to EtherCAT slaves. EC USER PREOP CONFIG(slave address) is invoked while the slaves are still in PREOP mode.



Input

Slave address

Output

None

Return Value

0 on success, -1 if failed. The user can change that.

Declaration

public function EC_USER_PREOP_CONFIG(byval slave_addr as long) as long

Syntax

retVal = EC_USER_PREOP_CONFIG(<Slave address>)

Examples

for i = 1 to NUM_OF_SLAVES

   retVal = EC_USER_PREOP_CONFIG(i)

next

See Also