FB_KL1501Config

The FB_KL1501Config function block is used to parameterize a KL1501: 1-channel counter terminal.
![]() | This function block does not follow the alternative output format, since the process image shifts during conversion to this format. |
Inputs
VAR_INPUT
bConfigurate : BOOL;
bReadConfig : BOOL;
iSetCounterType : INT;
bSetBackwardCounting : BOOL;
tTimeout : TIME;
END_VAR
Name | Type | Description |
---|---|---|
bConfigurate | BOOL | A rising edge starts the configuration sequence. First, the general terminal data, i.e. "terminal name", "special version" and "firmware version", are read. Then, the specified settings are written to the corresponding registers and finally read again for verification and information. The read information is displayed at the function block outputs. During this sequence the output bBusy is TRUE, and no further command, e.g. bReadConfig, is accepted. |
bReadConfig | BOOL | A rising edge starts a read sequence. The general terminal data “terminal name”, “special version” and “firmware version” are read, followed by the set configuration parameters. The read information is displayed at the function block outputs. During the read sequence the output bBusy is TRUE, and no further command, e.g. bConfigurate, is accepted. |
iSetCounterType | INT | Counter type input. The setting is based on the table below. |
bSetBackwardCounting | BOOL | TRUE at this input reverses the count direction. |
tTimeout | TIME | The terminal configuration or reading of the configuration must be completed within the time entered here. Otherwise an error with a corresponding error number is issued at the outputs bError and iErrorId. |
iSetCounterType | Counter type |
---|---|
0 | 32-bit up/down counter |
1 | 2 x 16-bit up counter |
2 | 32-bit gated counter, gate input Low disables the counter |
3 | 32-bit gated counter, gate input High disables the counter |
Inputs/outputs
VAR_IN_OUT
stInData : ST_KL1501InData;
stOutData : ST_KL1501OutData;
END_VAR
Name | Type | Description |
---|---|---|
stInData | Reference to the structure of the input process image. | |
stOutData | Reference to the structure of the output process image. |
Outputs
VAR_OUTPUT
bBusy : BOOL;
bError : BOOL;
iErrorId : UDINT;
iState : USINT;
iDataIn0 : UINT;
iDataIn1 : UINT;
iDataIn : UDINT;
iTerminalType : WORD;
iSpecialType : WORD;
iFirmwareVersion : WORD;
sDescription : STRING;
sCounterType : STRING;
bBackwardCounting : BOOL;
END_VAR
Name | Type | Description |
---|---|---|
bBusy | BOOL | As long as the read or configuration sequence is in progress, this output is TRUE. |
bError | BOOL | This output is switched to TRUE, if an error occurred while a command (Configure or Read) is executed. The command-specific error code is contained in iErrorId. |
iErrorId | UDINT | Contains the command-specific error code of the most recently executed command. It is reset to 0 by activating the function block again via the inputs bConfigurate or bReadConfig. See error codes. |
iState | USINT | Corresponds to the status variable of the process data stInData.iState, see VAR_IN_OUT. During command execution (bBusy = TRUE) this output is set to 0. This output is therefore suitable for assessing the status of the terminal in normal operation. Interfering states during configuration and reading through the register communication are hidden. |
iDataIn0 | UINT | Corresponds to the data variable of the process data stInData.arrDataIn[0], see VAR_IN_OUT. During command execution (bBusy = TRUE) this output retains the value it had before the command was called. This makes the output suitable for direct process data processing during normal operation of the terminal. Interfering states during configuration and reading through the register communication are hidden. |
iDataIn1 | UINT | Corresponds to the data variable of the process data stInData.arrDataIn[1], see VAR_IN_OUT. During command execution (bBusy = TRUE) this output retains the value it had before the command was called. This makes the output suitable for direct process data processing during normal operation of the terminal. Interfering states during configuration and reading through the register communication are hidden. |
iDataIn | UDINT | Corresponds to the data variable of the process data stInData.iDataIn, see VAR_IN_OUT. During command execution (bBusy = TRUE) this output retains the value it had before the command was called. This makes the output suitable for direct process data processing during normal operation of the terminal. Interfering states during configuration and reading through the register communication are hidden. |
iTerminalType | WORD | Contents of register 8 (terminal name). When used with the correct terminal, the content should be 0x05DD (1501dec). |
iSpecialType | WORD | Contents of register 29 (special version) |
iFirmwareVersion | WORD | Contents of register 9 (firmware version) |
sDescription | STRING | Terminal name, special version and firmware version as string (e.g. 'terminal KL1501-0000 / firmware 1C'). |
sCounterType | STRING | Set counter type in plain text. |
bBackwardCounting | BOOL | TRUE: The counting direction was reversed. |
Requirements
Development environment | Target platform | IO Hardware | PLC libraries to include |
---|---|---|---|
TwinCAT v3.1.4018.26 | PC/CX | KL1501 | Tc2_IoFunctions from v3.3.5.0 |