F_iecSetDCS

F_iecSetDCS 1:

This help function copies the double command state to a byte variable. In the TwinCAT PLC the double command state occupies 2 bits of process data. In a byte variable, the state of up to 4 double commands can therefore be mapped.

Syntax

FUNCTION F_iecSetDCS: BYTE
VAR_INPUT
    in      : BYTE;
    offset  : UDINT(0..3);
    eDCS    : E_IEC870_5_101DCS;
END_VAR

F_iecSetDCS 2: Inputs

in: Target variable into which the double command state is to be copied.

offset: Bit offset of the double command state.

eDCS: The new value of the double command state.

Sample in ST

The state of the four double commands is set to ON.

PROGRAM MAIN
VAR
    memarea AT%M* : ARRAY[0..10] OF BYTE;
END_VAR
memarea[0] := F_iecSetDCS( memarea[0], 0, eIEC870_DCS_ON );
memarea[0] := F_iecSetDCS( memarea[0], 1, eIEC870_DCS_ON );
memarea[0] := F_iecSetDCS( memarea[0], 2, eIEC870_DCS_ON );
memarea[0] := F_iecSetDCS( memarea[0], 3, eIEC870_DCS_ON );

Requirements

Development environment

Target system type

PLC libraries to be linked (category group)

TwinCAT v3.1.4012.0

PC oder CX (x86, x64, Arm®)

Tc2_IEC60870_5_10x (Communication->IEC60870)
Tc2_SerialCom (Communication->Serial)
Tc2_TcpIp (Communication->TcpIp)
Tc2_Utilities (System)