User's Manual

CAEN RFID API Reference Manual
25
Fujitsu_BurstWrite Method (CAENRFIDTag, Byte, Int16, Byte, Byte[], Int32)
Description:
This method can be used to issue a BurstWrite custom command as defined by the Fujitsu datasheet after having put it
in Secured state using the Access command.
Parameters:
Name
Description
Tag
The CAENRFIDTag representing the tag to be written.
MemBank
The memory bank where to write the data.
Address
The address where to start writing the data.
Length
The number of byte to be written.
Data
An array of bytes representing the data to be written into the tag.
AccessPassword
The access password.
Return value:
A byte representing the "Write-locked" response of the tag.
Syntax:
C# representation:
public byte Fujitsu_BurstWrite(
CAENRFIDTag Tag,
byte MemBank,
short Address,
byte Length,
byte[] Data,
int AccessPassword)
JAVA representation:
public byte Fujitsu_BurstWrite(
CAENRFIDTag Tag,
byte MemBank,
short Address,
byte Length,
byte[] Data,
int AccessPassword)
throws CAENRFIDException
C representation:
CAENRFIDErrorCodes CAENRFID_Fujitsu_SecureBurstWrite(
CAENRFIDHandle handle,
CAENRFIDTag *Tag,
char MemBank,
short Address,
char Length,
char *Data,
char *TRData,
int AccessPassword);