Comtrol Corporation makes no representations or warranties with regard to the contents of this document or
to the suitability of the Comtrol product for any particular purpose. Specifications subject to change without
notice. Some software or features may not be available at the time of publication. Contact your reseller for
current product information.
1.1. Data Type Definitions............................................................................................................................ 5
Chapter 2. Data Extraction/Filtering Process ................................................................ 7
2.2. RFID Data Extraction and Filtering Process .................................................................................9
2.3. Barcode Data Extraction and Filtering Process ...........................................................................10
Chapter 3. RFID Data Extraction and PLC/Application Interface.......................... 11
3.1. RFID Data Formats ..............................................................................................................................11
3.1.1. PLC RFID Data Format ................................................................................................................ 11
3.1.2. Application RFID Data Format .................................................................................................... 13
3.2. Supported RFID Reader Formats..................................................................................................... 14
5.5. Filter Age Time...................................................................................................................................... 24
5.6. Discard Unknown RFID/Barcode Data ...........................................................................................24
Index ....................................................................................................................................... 25
Table of ContentsDeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. B - iii
Table of Contents
iv - DeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. B Table of Contents
Chapter 1. Introduction
Programming complicated tasks on a PLC can be very difficult and time consuming. Quite simply, what may
be relatively easy to program in a high-level programming language can be very difficult in ladder logic. The
filtering and data extraction functions in the DeviceMaster UP are intended to help solve those problems for
string, RFID and barcode data.
The data extraction and filtering processes in the DeviceMaster UP are designed to offload as much work as
possible from the PLC and/or application and provide a very simple and easy to use interface for standard
RFID and barcode data. This functionality and interface is designed to save dozens, possibly hundreds of lines
of ladder logic in a typical PLC program.
1.1. Data Type Definitions
The following data type definitions apply:
UINTUnsigned Integer (16 bit)
UDINTUnsigned Double Integer (32 bit)
STRINGCharacter String (1 byte per character)
BYTEBit String (8 bit)
Chapter 1. IntroductionDeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. B - 5
Data Type Definitions
6 - DeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. BChapter 1. Introduction
Chapter 2. Data Extraction/Filtering Process
The data extraction and filtering processes work together to offer:
•String filtering for raw/ASCII data up to 128 bytes in length.
•RFID data extraction and filtering.
-Extraction of all tag parameters from the 43 possible EPCglobal formats including:
-Encoding scheme
-Filtering value
-Company code
-Product/Location code
-Serial number
-Extraction of the antenna number located in the RFID reader tag ASCII string. (Included with the
RFID tag data parameters).
-Selectable filtering criteria to both the PLC and application based on these parameters.
-Selectable RFID antenna groupings.
-Selectable RFID reader formats.
-Discarding of unknown data to the PLC and/or application.
•Barcode extraction and filtering.
-Extraction of all barcode parameters from valid UPC/EAN barcode formats including:
-Numbering code
-Company code
-Product code
-Selective filtering criteria to both the PLC and application based on these parameters.
-Discarding of unknown data to the PLC and/or application.
-Selectable barcode data formats.
2.1. Filtering Criteria Definition
The filtering criteria is defined as the
parameters used in the filtering
process.
•As the number of selected filtering
criteria options increases, the
number of serial/socket messages
that can potentially pass filtering
increases.
•As the number of selected filtering
criteria options decreases, the
number of serial/socket messages
that can potentially pass filtering
decreases.
•The possible filtering criteria parameters for RFID filtering are Antenna, Encoding Scheme, Filtering
Value, Company code, Product/Location code, and Serial Number.
Chapter 2. Data Extraction/Filtering ProcessDeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. B - 7
Filtering Overview
Filtering Criteria Definition
•The possible filtering criteria parameters for barcode filtering are Numbering, Company code, and
Product code.
•String filtering has no applicable filtering criteria. All serial/socket bytes are treated as raw data and
compared in the filtering process.
Example:
•A DeviceMaster UP is connected to an RFID reader.
•The PLC interface is enabled and is operating in RFID filtering mode. The PLC filtering criteria is set to
Company code and Product/Location code.
•The application port is enabled and it is also operating in RFID filtering mode. The application filtering
criteria is set to Company code, Product/Location code, and Serial Number.
•Six RFID tags are then read at one time. All have the same Company and Product/Location codes, but
different Serial Numbers.
-The PLC will receive one RFID tag because all have the same Company and Product/Location codes.
-The application will receive all six RFID tags because the Serial Number is included in the filtering
criteria and all six tags have unique serial numbers.
Filtering Criteria Example
8 - DeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. BChapter 2. Data Extraction/Filtering Process
RFID Data Extraction and Filtering Process
2.2. RFID Data Extraction and Filtering Process
The following diagrams describe the overall RFID data extraction and filtering process.
Chapter 2. Data Extraction/Filtering ProcessDeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. B - 9
Barcode Data Extraction and Filtering Process
2.3. Barcode Data Extraction and Filtering Process
The following diagram describes the overall barcode data extraction and filtering process.
10 - DeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. BChapter 2. Data Extraction/Filtering Process
Chapter 3. RFID Data Extraction and PLC/
Application Interface
The RFID data extraction process extracts the various parameters from EPCglobal formatted tags. It is
designed to greatly simplify PLC and application programming tasks.
EPCglobal is the world wide standard for RFID tag formats. It encompasses a number of 64 and 96 bit
encoding schemes and, at present, a total of 43 specified formats, of which 35 are unique.
When RFID filtering is enabled and a valid filtering criteria is specified, all received data is sent to the PLC
and/or application in a consistent format. If a tag with a valid EPCglobal format is received, the various
parameters will be extracted and placed into a formatted data message. The associated tag ASCII string will
be placed in the message data area. (The ASCII tag format may vary depending on the RFID reader.) Any
non-tag messages will be placed in the data area and the tag parameters will be set to zero.
3.1. RFID Data Formats
The RFID data formats have the following characteristics:
•For the PLC, contains the same Produced Sequence Number and Length fields as a regular receive data
message.
•Contains the RFID specific parameters and the RFID tag ASCII string (or unknown message data).
•Has a similar format for both the PLC and application interface.
3.1.1. PLC RFID Data Format
When the PLC interface is operating in RFID filtering mode, all data sent to the PLC uses this format.
FieldsData TypeDescription
Produced data
sequence number
Length of RFID
message
Company CodeUDINT[2]
Product/Location
Code
Serial NumberUDINT[2]
Encoding Scheme UINTEncoding scheme from tag data.
Filtering ValueUINTFiltering value from tag data.
Antenna NumberUINTAntenna number on RFID reader/scanner.
Tag Data LengthUINTLength of RFID tag string in bytes.
UINT
Values = 0-65535 (FFFF Hex)
UINT
Values = 20-148
UDINT[2]
Sequence number that is incremented with each new
message.
Length in bytes of following data.
Company Code extracted from tag data. Depending on
encoding scheme, this field may include Company
Prefixes, Company Prefix Indexes, or Government
Managed Identifier.
Product Code extracted from tag data. Depending on
encoding scheme, this field may include the Item
reference, location reference, asset reference, object class,
or be set to zero.
Serial Number extracted from tag data. Depending on
the encoding scheme, this field may include the Serial
Number or individual asset reference.
Chapter 3. RFID Data Extraction and PLC/Application InterfaceDeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. B - 11
PLC RFID Data Format
FieldsData TypeDescription
Tag data string (variable length field). May also include
Tag DataBYTE[32]
non-tag messages, which can optionally be sent to the
PLC and/or application.
Note the following:
•Not all fields will be valid for all formats. For some tag types, such as the DoD-64 and DoD-96, the
Product Code will be set to zero.
•At present, the second Product/Location Code UINT will always be set to zero. The second UINT has been
added to allow for future EPCglobal Specification extensions.
•The Company Code, Product/Location Code, Serial Number, Encoding Scheme, Antenna Number, and
Filtering Value will be set to zero for non-tag messages.
Example:
•A DeviceMaster UP serial port is operating in RFID filtering mode.
•An RFID tag is received in Intermec ASCII Format: 4,H3014006860E511000001CE8C
•The data sent to a PLC would have the following format:
FieldData Value(s)
Produced data sequence number0-65535 (FFFF Hex)
Length of RFID message59
Company Code [0]
Company Code [1
Product/Location Code [1]
Serial Number [0]
Serial Number [1]
66800
0
234564
0
118412
0
Encoding Scheme48
Filtering Value0
Antenna Number4
Tag D at a Le n gt h27
Tag D at a
4,H3014006860E511000001CE8C
(ASCII characters)
12 - DeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. BChapter 3. RFID Data Extraction and PLC/Application
Interface
Application RFID Data Format
3.1.2. Application RFID Data Format
When the application interface is operating in RFID filtering mode, all data sent to the application will be in
the following format:
FieldData TypeDescription
Company Code extracted from tag data. Depending on encoding scheme,
Company CodeUDINT[2]
Product/Location
Code
UDINT[2]
Serial NumberUDINT[2]
Encoding Scheme UINTEncoding Scheme from tag data
Filtering ValueUINTFiltering value from tag data
Antenna Number UINTAntenna number on RFID Reader/Scanner
Tag Data Length UINTLength of RFID tag string in bytes
Tag DataBYTE[32]
Note the following:
•Not all fields will be valid for all formats. For some tag types, such as the DoD-64 and DoD-96, the
Product Code will be set to zero.
•At present, the second Product Code UINT will always be set to zero. The second UINT has been added to
allow for future EPCglobal Specification extensions.
•The Company Code, Product/Location Code, Serial Number, Encoding Scheme, Antenna Number, and
Filtering Value will be set to zero for non-tag messages.
•The RFID parameters will be sent to the application in big-endian format. All parameters, with the
exception of the Tag data string, will have to be byte-swapped for use on a little-endian system.
Example:
•A DeviceMaster UP socket port is operating in RFID filtering mode.
•An RFID tag is received in Intermec ASCII Format: 4,H3014006860E511000001CE8C
•The data sent to an application would have the following format:
this field may include Company Prefixes, Company Prefix Indexes, or
Government Managed Identifier.
Product Code extracted from tag data. Depending on encoding scheme,
this field may include the Item reference, location reference, asset
reference, object class, or be set to zero.
Serial Number extracted from tag data.
Depending on the encoding scheme, this field may include the Serial
Number or individual asset reference.
Tag data string (variable length field). May also include non-tag
messages, which can optionally be sent to the PLC and/or application.
Encoding Scheme48
Filtering Value0
Antenna Number4
Tag D at a Le n gt h27
Tag D at a
Chapter 3. RFID Data Extraction and PLC/Application InterfaceDeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. B - 13
4,H3014006860E511000001CE8C
(ASCII characters)
Supported RFID Reader Formats
3.2. Supported RFID Reader Formats
The DeviceMaster UP supports several RFID reader formats.
•These formats can be selected on the embedded web pages and are not necessarily inclusive for that
reader.
•If an unlisted RFID reader returns data in a format similar to that of the supported formats, then that
RFID reader interface type can be used for the unlisted reader.
RFID reader formats supported by the DeviceMaster UP:
RFID Reader
Interface Type
Unspecified
Alien (Text Mode)
Alien (Terse
Mode)
Intermec (Hex
ASCII Mode)
Description
Unknown format.
The Device Master UP will attempt to locate the antenna number and RFID tag data
in the ASCII string. It will look for:
•RFID tag data consisting of either 12 or 16 Hex ASCII characters strung together.
•An antenna number either before or after the tag data.
The Alien RFID reader Text Mode. RFID data is received with:
•Tag : precedes the tag data.
•The tag may consist of either 12 or 16 Hex ASCII characters strung together or
separated in groups of four with spaces. Valid formats include xxxxxxxxxxxx or
xxxx xxxx xxxx.
•Ant: precedes the antenna number.
Data Example: Tag:1115 F268 81C3 C012, Ant:1 (where the antenna is one)
The Alien RFID Reader Terse Mode. RFID data is received with:
•The tag may consist of either 12 or 16 Hex ASCII characters strung together or
separated in groups of four with spaces. Valid formats include xxxxxxxxxxxx or
xxxx xxxx xxxx.
•A comma then separates the antenna number.
•A comma then separates the count.
Data Example: 1115 F268 81C3 C012,2,35 (where the antenna is two and the count is
35)
The standard Intermec RFID Reader Terse Mode. RFID data is received with:
•The antenna number.
•A comma or space.
•The tag consists of either 12 or 16 Hex ASCII characters strung together.
•The antenna number may be placed after the RFID tag data.
•An example read messages for the RFID reader may be:
read ant tagid or read tagid ant. Any other command information should come after
the antenna and tag data.
Data Examples:
2,H1115F26881C3C012
H1115F26881C3C012 2 (Where the antenna is two)
•Valid Intermec RFID reader commands include: read ant tagid or read tagid ant.
Any other command information should come after the antenna and tag data.
14 - DeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. BChapter 3. RFID Data Extraction and PLC/Application
Interface
EPCglobal Formats
3.3. EPCglobal Formats
The EPCglobal specification lists a total of thirteen encoding schemes and a number of sub-formats that lay
out the various data fields such as company, product, location, and serial numbers. The DeviceMaster UP will
send the data to the PLC and/or application for each encoding scheme according to the table below:
Encoding
Scheme
SGTIN-64
(2 hex)
DoD-64
(CE hex)
SSCC-64
(8 hex)
SGLN-64
(9 hex)
GRAI-64
(A hex)
GIAI-64
(B hex)
DoD-96
(2F hex)
SGTIN-96
(30 hex)
SSCC-96
(31 hex)
SGLN-96
(32 hex)
GRAI-96
(33 hex)
GIAI-96
(34 hex)
GID-96
(35 hex)
BitsFormat Description
14 bit Company Prefix Index
64
20 bit Item Reference
25 bit Serial Number
64
64
30 bit Government Managed Identifier
24 bit Serial Number
14 bit Company Prefix Index
39 bit Serial Number
14 bit Company Prefix Index
64
20 bit Location Reference
19 bit Serial Number
14 bit Company Prefix Index
64
20 bit Asset Type
19 bit Serial Number
64
96
14 bit Company Prefix Index
39 bit Individual Asset reference
48 bit Government Managed Identifier
36 bit Serial Number
20-40 bit Company Prefix
96
24-4 bit Item Reference
38 bit Serial Number
20-40 bit Company Prefix
96
38-18 bit Serial Number
24 bits unused
20-40 bit Company Prefix
96
21-4 bit Location Reference
41 bit Serial Number
20-40 bit Company Prefix
96
24-4 bit Asset Type
38 bit Serial Number
96
20-40 bit Company Prefix
62-42 bit Individual Asset Reference
28 bit General Manager Number
96
24 bit Object Class
36 bit Serial Number
Associated RFID
Message Parameters
Company Code
Product/Location Code
Serial Number
Company Code
Serial Number
Company Code
Serial Number
Company Code
Product/Location Code
Serial Number
Company Code
Product/Location Code
Serial Number
Company Code
Serial Number
Company Code
Serial Number
Company Code
Product/Location Code
Serial Number
Company Code
Serial Number
Company Code
Product/Location Code
Serial Number
Company Code
Product/Location Code
Serial Number
Company Code
Serial Number
Company Code
Product/Location Code
Serial Number
Chapter 3. RFID Data Extraction and PLC/Application InterfaceDeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. B - 15
EPCglobal Formats
16 - DeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. BChapter 3. RFID Data Extraction and PLC/Application
Interface
Chapter 4. Barcode Data Extraction and PLC/
Application Interface
The barcode data extraction process extracts the various parameters from UPC/EAN formatted barcodes. It is
designed to simplify PLC and application programming tasks.
What are UPC/EAN barcodes? UPC/EAN are the terms used to define the barcode formats commonly used to
identify company and products used worldwide.
When barcode filtering is enabled and a valid filtering criteria and format are specified, all data is sent to the
PLC and/or application in a consistent format. If a tag with a valid UPC/EAN format is received, the various
parameters will be extracted and placed into a formatted data message. The associated barcode ASCII string
will be placed in the message data area. Any non-UPC/EAN barcodes or other messages will be placed in the
data area and the barcode parameters will be set to zero.
4.1. Barcode Data Interface Format
The barcode data formats have the following characteristics:
•For the PLC, contains the same Produced Sequence Number and Length fields as a regular receive data
message.
•Contains the barcode specific parameters and the barcode ASCII string (or unknown message data).
•Has a similar format for both the PLC and application interface.
4.1.1. To PLC Barcode Data Format
When the PLC interface is operating in barcode filtering mode, all data sent to the PLC will be in the
following format:
FieldSizeDescription
Produced data
sequence number
LengthUINT
Company CodeUDINTCompany Code
Product CodeUDINTProduct Code
Numbering CodeUINTNumbering Code (from first byte(s) of barcode data)
Barcode Data LengthUINTLength of barcode string in bytes
Barcode DataBYTE[128]Barcode data string (variable length field)
Note: The Company Code will be set to zero for all EAN-8 codes.
UINT
Values = 0-65535 (FFFF Hex)
Values = 12-140
Sequence number that is incremented with each
new message.
Length in bytes of following data.
Chapter 4. Barcode Data Extraction and PLC/Application InterfaceDeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. B
- 17
To Application Barcode Data Format
Example:
•A DeviceMaster UP serial port is operating in barcode filtering mode.
•The barcode standard 12-14 digit format is set to Company-5/Product-5.
•The following barcode is received: “756727982906”
•The data sent to a PLC would have the following format:
FieldData Value(s)
Produced data sequence number 0-65535 (FFFF Hex)
Length of barcode message24
Company Code 56727
Product Code98290
Numbering Code7
Barcode Data Length12
Barcode Data756727982906 (in ASCII characters)
4.1.2. To Application Barcode Data Format
When the application interface is operating in barcode filtering mode, all data sent to the application will be
in the following format:
FieldSizeDescription
Company CodeUDINTCompany Code
Product CodeUDINTProduct Code
Numbering CodeUINTNumbering Code (from first byte(s) of barcode data)
Barcode Data Length UINTLength of barcode string in bytes
Barcode DataBYTE[128]Barcode data string (variable length field)
Note: The Company Code will be set to zero for all EAN-8 codes.
The barcode parameters will be sent to the application in big-endian format. All parameters, with the
exception of the barcode data string, will have to be byte-swapped for use on a little-endian system.
Example:
•A DeviceMaster UP socket port is operating in barcode filtering mode and the application port is enabled.
•The barcode standard 12-14 digit format is set to Company-5/Product-5.
•The following barcode is received: 756727982906
•The data sent to an application would have the following format:
FieldData Values
Company Code 56727
Product Code98290
Numbering Code7
Barcode Data Length12
Barcode Data756727982906 (in ASCII characters)
18 - DeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. BChapter 4. Barcode Data Extraction and PLC/Application
Interface
4.2. Supported UPC/EAN Formats
The following table lists the supported UPC/EAN formats.
Format
Total
Digits
Numbering
Digits
Company/
Product Digits
Check
Digits
Description
UPC-A121101Format used primarily in North America.
UPC-E8161Format derived from UPC-A.
EAN-13 132101Format used primarily in Europe.
JAN (same as
EAN-13)
132101Format used primarily in Japan.
EAN-14143101Used worldwide.
EAN-882 or 3
5 or 4 (Product
Code Only)
1
Not related to any other barcode format.
Encodes only numbering and product codes.
Chapter 4. Barcode Data Extraction and PLC/Application InterfaceDeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. B
- 19
Supported UPC/EAN Formats
20 - DeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. BChapter 4. Barcode Data Extraction and PLC/Application
Interface
Chapter 5. Filtering Configuration Settings
Filtering is the process by which the DeviceMaster UP can control the number of similar received data
messages sent to a PLC and/or application. The goal of filtering is to prevent extra, or unwanted, messages
from being sent to the PLC and/or application.
The DeviceMaster UP provides filtering with the following capabilities:
•Filter up to 256 filter entries at one time per port.
•Filter raw/ASCII String data up to 128 bytes in length.
•Allows the PLC and application to operate in different filtering modes. (i.e. The PLC filtering mode may
be RFID while the application may have its filtering set to Off or String filtering.)
•Independent filtering criteria for both the PLC and application.
•RFID Antenna grouping. Allows the RFID filtering to work with numerous antenna configurations.
•Interfaces to different RFID readers.
•UPC/EAN barcode filtering.
•Aging of filtered entries. Allows a user to set how long a filter entry will be filtered after it has last been
read.
•Discarding of unrecognized messages in RFID and barcode filtering modes.
All filtering and data extraction functionality can be configured separately for both the PLC and application
socket interfaces using the DeviceMaster UP Filtering/Data Extraction web page interface (below).
Chapter 5. Filtering Configuration SettingsDeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. B - 21
Filtering Modes
5.1. Filtering Modes
The following settings are available for the filtering modes in the web page PLC
interface.
Filtering
Modes
OffNone
StringUp to 128 bytes of raw/ASCII data.
RFID
Barcode
The application filter mode can be set independently of the PLC filtering mode. The only exceptions are:
•If the PLC filter mode is set to RFID, the application filter mode cannot be set to Barcode.
•If the PLC filter mode is set to Barcode, the application filter mode cannot be set to RFID.
No Filtering of any type. Maximum packet
sizes apply.
No data extraction. Messages are limited to
128 bytes in length. Any messages exceeding
128 bytes will automatically be truncated to
128 bytes.
Antenna Number: From RFID reader/scanner.
Encoding Scheme: From RFID tag data.
Filtering Value: From RFID tag data.
Company Code: From RFID tag data.
Product/Location Code: From RFID tag data.
Serial Number: From RFID tag data.
Numbering: One to three digits, depending on
barcode format.
Company Code: Length in digits varies
depending on the format.
Product Code: Length depends on the format.
RFID data in any of the EPCglobal formats
will be filtered, the associated parameters will
be extracted, and the extracted data and RFID
tag will be sent to the PLC/application in a
specified format.
Barcode data in UPC/EAN formats will be
filtered, the associated parameters will be
extracted, and the extracted data and barcode
will be sent to the PLC/application in a
specified format.
5.2. RFID Antenna Grouping
This setting is applicable only to RFID filtering and only if the Antenna Filtering option is enabled. It allows
the DeviceMaster UP to filter RFID tags based on antenna groupings.
When Antenna Grouping is enabled:
•Tags that have the same filtering criteria (i.e. company and product number), received
from antennas within the same group will be filtered as if they are the same entry and
will be treated as one filtering entry.
•Tags that have the same filtering criteria (i.e. company and product number), received
from antennas not within the same group will be filtered as if they are different
entries.
The possible groupings are:
Setting
None1234
Groups of Twos1,23,45,6Etc.
Groups of Threes1,2,34,5,67,8,9Etc.
Groups of Fours1,2,3,45,6,7,89,10,11,12Etc.
First Two Only1,234N+1
First Three Only1,2,345N+2
22 - DeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. BChapter 5. Filtering Configuration Settings
Group 1
Antennas
Group 2
Antennas
Group 3
Antennas
Group N
Antennas
5.3. RFID Reader Interface Type
This setting defines the expected RFID data format to be used while operating in RFID filtering mode. Each
Reader Interface Type is unique and pertains to the RFID reader manufacturer. If a different RFID reader is
to be used and it provides a similar format to any of the RFID Readers listed below, it can also be used in
RFID filtering mode.
•Unspecified: The DeviceMaster UP will assume a HEX ASCII format and will
attempt to locate the antenna number.
•Alien (Text Mode): Specifies the Alien RFID reader Te x t M o de.
•Alien (Terse Mode): Specifies the Alien RFID reader Terse Mode.
•Intermec (Hex ASCII Mode): Specifies the Intermec Reader returning data in the
Hex ASCII Mode.
See 3.2. Supported RFID Reader Formats
on Page 14 for a detailed description of the RFID reader formats.
5.4. Barcode Formats
These settings define the barcode format to be
used for both standard and eight digit barcodes.
The term standard refers to UPC-A, EAN-13, JAN,
and EAN-14 barcodes which all have ten company/
product digits. The eight digit barcodes include
UPC-E and EAN-8 formats.
The standard and eight digit formats are selected
independently and each operates independently.
Chapter 5. Filtering Configuration SettingsDeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. B - 23
5.5. Filter Age Time
This setting defines the time a filter string, RFID tag, or barcode
will continue to be filtered after the last time it was received. If an
entry is received before the Filter Age Time has passed, the entry
will be filtered and the data will not be sent to the PLC and/or
application. However, if the Filter Age Time has passed, it will pass
filtering and be sent to the PLC and/or application.
Example:
•The Filter Age Time is set to five seconds:
-An entry is received for the first time and sent to the PLC and/or application.
-It is then received again in four seconds. The entry will not be sent to the PLC and/or application since
it is still on the filter list.
-The entry is then received after another six seconds. The entry will be sent to the PLC and/or
application again since it was removed from the filter list after five seconds.
-End result = entry is sent to the PLC and/or application twice.
•The Filter Age Time is then set to ten seconds.
-An entry is received for the first time and sent to the PLC and/or application.
-It is then received again in four seconds. The entry will not be sent to the PLC and/or application since
it is still on the filter list.
-The entry is then received after another six seconds. The entry will not be sent to the PLC and/or
application since it is still on the filter list.
-End result = entry is sent to the PLC and/or application once.
5.6. Discard Unknown RFID/Barcode Data
This setting specifies what to do with unrecognized RFID or barcode data.
•Off: Send unrecognized data to the PLC and/or application.
•To- PL C: Discard unrecognized data to the PLC. Allow sending of unrecognized
data to the application.
•To- Ap pl ic ati on : Discard unrecognized data to the application. Allow sending of
unrecognized data to the PLC.
•To-PLC/Application: Discard unrecognized data to both the PLC and application.
Chapter 5. Filtering Configuration SettingsDeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. B - 24
Index
A
application
barcode data format
data formats
application barcode
18
RFID data format
data formats
application
13
B
barcode
data extraction
17
data extraction and filtering10
data formats
data formats
barcode
17
formats23
BYTE 5
D
data extraction/filtering
process
7
data type definitions 5
Discard Unknown RFID/Barcode Data 24
E
EPCglobal
formats
15
F
Filter Age Time 24
filtering
configuration settings
21
criteria definition7
modes22
P
PLC
barcode data format
data formats
PLC barcode
17
RFID data format
data formats
PLC
11
PLC/application interface 11, 17
R
RFID
antenna grouping
22
data extraction11
data extraction and filtering process9
data formats
data formats
RFID
11
RFID reader formats
supported
14
RFID Reader Interface
type
23
S
STRING 5
U
UDINT 5
UINT 5
UPC/EAN formats
supported
19
IndexDeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. B - 25
Index
26 - DeviceMaster UP Filtering and Data Extraction Reference Guide: 2000470 Rev. B Index
Loading...
+ hidden pages
You need points to download manuals.
1 point = 1 manual.
You can buy points or you can get point for every manual you upload.