User's Manual

CAEN RFID API Reference Manual
45
Hitachi_ReadLock Method
Hitachi_ReadLock Method (CAENRFIDTag, Int16)
Description:
This method can be used to issue a ReadLock custom command as defined by the Hitachi Hibiki datasheet.
Parameters:
Name
Description
Tag
The CAENRFIDTag object representing the tag to select.
Payload
The Payload parameter for the ReadLock custom command as defined by Hitachi Hibiki
datasheet.
Syntax:
C# representation:
public void Hitachi_ReadLock(
CAENRFIDTag Tag,
short Payload)
JAVA representation:
public void Hitachi_ReadLock(
CAENRFIDTag Tag,
short Payload)
throws CAENRFIDException
C representation:
CAENRFIDErrorCodes CAENRFID_Hitachi_ReadLock(
CAENRFIDHandle handle,
CAENRFIDTag *Tag,
short Payload);
Hitachi_ReadLock Method (CAENRFIDTag, Int16, Int32)
Description:
This method can be used to issue a ReadLock custom command as defined by the Hitachi Hibiki datasheet after having
put it in Secured state using the Access command.
Parameters:
Name
Description
Tag
The CAENRFIDTag object representing the tag to select.
Payload
The Payload parameter for the ReadLock custom command as defined by Hitachi Hibiki
datasheet.
AccessPassword
The access password.
Syntax:
C# representation:
public void Hitachi_ReadLock(
CAENRFIDTag Tag,
short Payload,
int AccessPassword)
JAVA representation:
public void Hitachi_ReadLock(
CAENRFIDTag Tag,
short Payload,
int AccessPassword)
throws CAENRFIDException
C representation:
CAENRFIDErrorCodes CAENRFID_Hitachi_SecureReadLock(
CAENRFIDHandle handle,
CAENRFIDTag *Tag,
short Payload,
int AccessPassword);