IOF_SER_DRIVE_BackupEx
The IOF_SER_DRIVE_BackupEx function block allows the drive data (S and P parameters) to be backed up and restored via the PLC to a binary file or back to the drive. The list of S and P parameter data to be backed up is taken from the Sercos parameter IDN192 by default. Backup and restore require the SERCOS parameter mode (phase 2).
If bStdBackupList = TRUE (default), then the parameter IDN192 is used as the list of data to be backed up.
If bUserBackupList = TRUE, then the parameter list arrList is used as the list of data to be backed up.
Otherwise IDN17 is used, the list of all SERCOS parameters.
Restore requires a backup file that was created with the IDN192 parameter or with a user parameter list. Some parameters in the IDN17 list are read-only.
Backup and restore can create a CRC16-CCITT and a 16-bit checksum and save them in the IDN142 parameter, if available. The bCRCEnable option is disabled (FALSE) by default.
The file format of the backup file is described in the backup file format.
Inputs
VAR_INPUT
bCheck : BOOL;
bBackup : BOOL;
bRestore : BOOL;
bCRCEnable : BOOL;
bStdBackupList : BOOL := TRUE;
bUserBackupList : BOOL;
sNetId : T_AmsNetId;
nPort : UINT;
sComment : T_MaxString;
ePath : E_OpenPath := PATH_BOOTPATH;
sPathName : T_MaxString := 'DRIVEPAR.BIN';
tTimeout : TIME := DEFAULT_ADS_TIMEOUT;
bIgnoreParamErr : BOOL;
END_VAR
Name | Type | Description |
---|---|---|
bCheck | BOOL | A positive edge at this input activates the CRC and checksum check. CRC and checksum are persistent and saved in the IDN142 parameter after a backup or restore. If the value from parameter IDN142 and the persistent data match, bCheckOK is set to TRUE, otherwise bCheckOK is set to FALSE. |
bBackup | BOOL | The backup is activated via a positive edge at this input. |
bRestore | BOOL | The restore is activated via a positive edge at this input. |
bCRCEnable | BOOL | The CRC16-CCITT and the 16-bit checksum are enabled via bCRCEnable = TRUE. The CRC and the checksum are saved in parameter IDN142 if bCRCEnable = TRUE. |
bStdBackupList | BOOL | Determines which parameter list is used for the backup. By default, IDN192 (bStdBackupList = TRUE) is used for the backup, if bStdBackupList = FALSE then the list of all parameters IDN017 is used. Restore requires a backup file that was created with the IDN192 list. |
bUserBackupList | BOOL | Determines whether a user-defined parameter list arrList is used for the backup. By default IDN192 (bStdBackupList = TRUE) is used for the backup. arrList is used if bStdBackupList = FALSE and bUserBackupList = TRUE. Restore requires a backup file that was created with the IDN192 list or a user-defined parameter list. |
sNetId | T_AmsNetID | The network address of the TwinCAT computer on which the ADS command is to be executed can be specified here. For the local computer an empty string may be specified. |
nPort | UINT | The port number nPort is assigned by the TwinCAT system during the hardware configuration. |
sComment | T_MaxString | Comment that is written to the file header of the backup file. |
ePath | E_OpenPath | Determines the path of the backup file. If ePath = PATH_BOOTPATH, the TwinCAT BOOT path is used; if ePath = PATH_GENERIC, the path specified in sPathName is used. |
sPathName | T_MaxString | Contains the file name (when using the boot path) or the complete path and file name when using the generic path. |
tTimeout | TIME | Specifies the time-out period that must not be exceeded when the command is executed. |
bIgnoreParamErr | BOOL | Specifies whether to continue or abort the backup/restore in the event of a parameter read error or parameter write error. By default, the program is aborted in the event of errors (bIgnoreParamErr = FALSE). If the ignoring of errors is activated (bIgnoreParamErr = TRUE), the parameter number and the error numbers are stored in the list of skipped parameters arrSkippedList. |
Inputs/outputs
VAR_IN_OUT
arrList : ST_SercosParamList;
arrSkippedList : ST_SercosParamErrList;
END_VAR
Name | Type | Description |
---|---|---|
arrList | In case of a standard backup via IDN192 (bStdBackupList = TRUE), this list contains the backup parameters from IDN192 after the backup. In case of a user-defined backup (bUserBackupList = TRUE and bStdBackupList = FALSE), this list must contain the list of parameters to be backed up before the backup. In case of a backup via IDN17 (bUserBackupList = FALSE and bStdBackupList = FALSE), this list contains after the backup the list of existing parameters from IDN17. | |
arrSkippedList | Contains a list of the skipped parameters (the parameter number and the error numbers). |
Outputs
VAR_OUTPUT
bBusy : BOOL;
bError : BOOL;
nErrId : UDINT;
bCheckOK : BOOL;
iSkippedParams : UINT;
iHandledParams : UINT;
END_VAR
Name | Type | Description |
---|---|---|
bBusy | BOOL | When the function block is enabled, this output is set and remains set until a feedback is received. |
bError | BOOL | If an error should occur during the transfer of the command, then this output is set once the bBusy output was reset. |
nErrId | UDINT | Returns the ADS error number or the specific function block error number if the ERR output is set. |
specific function block error number | Description |
---|---|
0x1003 | Incorrect parameter mode |
0x1004 | Incorrect parameter data size |
0x1005 | Incorrect backup parameter type |
0x1006 | Backup parameter list was not IDN 192 |
Name | Type | Description |
---|---|---|
bCheckOk | BOOL | Is TRUE if the checksum test was successful. |
iSkippedParams | UINT | Contains the number of skipped parameters (see arrSkippedList) if ignoring of parameter errors was active (bIgnoreParamErr = TRUE). |
iHandledParams | UINT | Contains the number of the successfully backed up/restored parameters. |
Requirements
Development environment |
Target platform |
IO hardware |
PLC libraries to be integrated (category group) |
---|---|---|---|
TwinCAT v3.1.0 |
PC (x86) |
Sercans SCS-P ISA; Sercans SCS-P PCI; |
Tc2_IoFunctions (IO) |