User's Manual

CLASSES DESCRIPTION - CAEN RFID API Reference Manual 38
LockTag_EPC_C1G2 Method (Int16, Int16, Int16, Byte[], Int32)
Description:
This method can be used to lock a memory bank of a EPC Class 1 Gen 2 tag.
Parameters:
Name
Description
BankMask
Memory bank for tag identification.
PositionMask
Bit position (from the start of the selected bank) where apply the mask to match.
LengthMask
Length of the mask.
Mask
Mask of byte.
Payload
The Payload parameter for the lock command as defined by the EPC Class 1 Gen 2
protocol specification.
Syntax:
C# representation:
public void LockTag_EPC_C1G2(
short BankMask,
short PositionMask,
short LengthMask,
byte[] Mask,
int Payload)
Java and Android representation:
public void LockTag_EPC_C1G2(
short BankMask,
short PositionMask,
short LengthMask,
byte[] Mask,
int Payload)
throws CAENRFIDException
C representation:
CAENRFIDErrorCodes CAENRFID_BankFilteredLockTag_EPC_C1G2(
CAENRFIDHandle handle,
char *SourceName,
short BankMask,
short PositionMask,
short LengthMask,
char *Mask,
int Payload);