F_iecSetSPI

This help function copies single point information to a byte variable. In the TwinCAT PLC the single point information occupies 1 bit of process data. In a byte variable, the information of up to 8 single points can therefore be mapped.
Syntax
FUNCTION F_iecSetSPI: BYTE
VAR_INPUT
in : BYTE;
offset : UDINT(0..7);
eSPI : E_IEC870_5_101SPI;
END_VAR
Inputs
in: Target variable into which the single point information is to be copied.
offset: Bit offset of the information of the single point.
eSPI: The new value of the information of the single point.
Sample in ST
The information of the four single points is set to ON.
PROGRAM MAIN
VAR
memarea AT%M* : ARRAY[0..10] OF BYTE;
END_VAR
memarea[0] := F_iecSetSPI( memarea[0], 0, eIEC870_SPI_ON );
memarea[0] := F_iecSetSPI( memarea[0], 1, eIEC870_SPI_ON );
memarea[0] := F_iecSetSPI( memarea[0], 2, eIEC870_SPI_ON );
memarea[0] := F_iecSetSPI( memarea[0], 3, eIEC870_SPI_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) |