ns=2;s=DEPRAG Smart/SoftwareItemIdentification/CheckForUpdate
Überprüft ob ein neues Softwareupdate bereit steht.
Neben den bereits erläuterten Parametern sind für die Implementierung in TwinCAT 3 nachfolgende Variablen anzulegen / zu übergeben:
VAR
bCheckForUpdate : BOOL;
OutputDataCheckForUpdate : ST_CheckForUpdateOutputData;
hrCheckForUpdate : HRESULT;
fbSoftwareItemIdentification : FB_SoftwareItemId;
END_VAR
hrCheckForUpdate := fbSoftwareItemIdentification.CheckForUpdate(
bExecute := bCheckForUpdate
ConnectionHandle := depragSmartConnection.ConnectionHandle,
OutputData => OutputDataCheckForUpdate);
IF hrCheckForUpdate <> S_FALSE THEN
bCheckForUpdate := FALSE;
END_IF
Für Beispiele und Erklärungen bezüglich der Aufrufe von Knoten via Siemens TIA Portal sei an dieser Stelle auf den Unterpunkt "Siemens TIA Portal" in Abschnitt "Erste Schritte" verwiesen.