User's Manual

CAEN RFID API Reference Manual
68
ProgramID_EPC_C1G2 Method (CAENRFIDTag, Int16, Int32)
Description:
This method can be used to write the EPC of a EPC Class 1 Gen 2 tag after having put it in Secured state using the
Access command.
Parameters:
Name
Description
Tag
The CAENRFIDTag representing the tag to be programmed, the ID contained in this
object will be programmed into the tag.
NSI
The Numbering System Identifier as defined in EPC Class 1 Gen 2 protocol specifications.
AccessPassword
The access password.
Syntax:
C# representation:
public void ProgramID_EPC_C1G2(
CAENRFIDTag Tag,
short NSI,
int AccessPassword)
JAVA representation:
public void ProgramID_EPC_C1G2(
CAENRFIDTag Tag,
short NSI,
int AccessPassword)
throws CAENRFIDException
C representation:
CAENRFIDErrorCodes CAENRFID_SecureProgramID_EPC_C1G2(
CAENRFIDHandle handle,
CAENRFIDTag *Tag,
unsigned short NSI,
int AccessPassword);
ProgramID_EPC119 Method
Description:
This method can be used to write the UID of a EPC 1.19 tag.
Parameters:
Name
Description
Tag
The CAENRFIDTag representing the tag to be programmed.
NewID
An array of bytes representing the new UID for the tag.
Syntax:
C# representation:
public void ProgramID_EPC119(
CAENRFIDTag Tag,
byte[] NewID)
JAVA representation:
public void ProgramID_EPC119(
CAENRFIDTag Tag,
byte[] NewID)
C representation:
CAENRFIDErrorCodes CAENRFID_ProgramID_EPC119(
CAENRFIDHandle handle,
CAENRFIDTag *Tag,
char *NewID);