F_iecSetDPI
Diese Hilfsfunktion kopiert die Information einer Doppelmeldung (double point information) in eine Byte-Variable. In der TwinCAT SPS belegt die Information einer Doppelmeldung 2 Bit an Prozessdaten. In einer Byte-Variablen kann somit die Information von bis zu 4 Doppelmeldungen gemappt werden.
FUNCTION F_iecSetDPI: BYTE
VAR_INPUT
in : BYTE; (* Byte variable where the new double point information have to be encoded. *)
offset : UDINT(0..3);(* Double point information offset. *)
eDPI : E_IEC870_5_101DPI; (* The new value of double point information. *)
END_VAR
Beispiel:
Die Information der vier Doppelmeldungen wird auf ON gesetzt.
PROGRAM MAIN
VAR
memarea AT%MB0 : ARRAY[0..10] OF BYTE;
END_VAR
memarea[0] := F_iecSetDPI( memarea[0], 0, eIEC870_DPI_ON );
memarea[0] := F_iecSetDPI( memarea[0], 1, eIEC870_DPI_ON );
memarea[0] := F_iecSetDPI( memarea[0], 2, eIEC870_DPI_ON );
memarea[0] := F_iecSetDPI( memarea[0], 3, eIEC870_DPI_ON );
Voraussetzungen
Entwicklungsumgebung | Zielplattform | Einzubindende SPS Bibliotheken |
---|---|---|
TwinCAT v2.10.0 Build >= 1324 | PC oder CX (x86, ARM) | TcIEC870_5_101.Lib ( Standard.Lib; TcBase.Lib; TcSystem.Lib; TcUtilities.Lib; werden automatisch eingebunden ) |
Sehen Sie dazu auch