CANopen:SET DIN PDO DADD

From SoftMC-Wiki
Jump to: navigation, search

Obsolete since 0.4.15.3rc8 use SET_DIN_RANGE_PDO_DADD
Set COBID and location of 32 Digital Inputs inside TPDO.
Inputs are mapped to sys.din.<dadd*100> to sys.din.<dadd*100 + 31>

For example:
As for device with physical address 3 inputs will be mapped sys.din.300 to sys.din.331

Input

dadd: device address (physical network address)
cobid: CAN COBID
offset: offset inside PDO, starting from 0
size: in bytes, for example 0x60FE.1 is 4 bytes long

Output

None

Return Value

None

Declaration

import_c SET_DIN_PDO_DADD(byval as long,byval as long,byval as long,byval as long)

Syntax

SET_DIN_PDO_DADD(<dadd>,<cobid>,<offset>,<size>)

Exceptions

None

Examples

SET_DIN_PIN_DADD(1,0,0,0) ' Unmap digital inputs
SET_DIN_PDO_DADD(1,0x280,0 , 4) ' Digital Inputs are located in bytes 0,1,2 and 3 of RPDO with COBID 0x280

See Also