User's Manual

CAEN RFID API Reference Manual
24
Fujitsu_BurstWrite Method
Fujitsu_BurstWrite Method (CAENRFIDTag, Byte, Int16, Byte, Byte[])
Description:
This method can be used to issue a BurstWrite custom command as defined by the Fujitsu datasheet.
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.
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)
JAVA representation:
public byte Fujitsu_BurstWrite(
CAENRFIDTag Tag,
byte MemBank,
short Address,
byte Length,
byte[] Data)
throws CAENRFIDException
C representation:
CAENRFIDErrorCodes CAENRFID_Fujitsu_BurstWrite(
CAENRFIDHandle handle,
CAENRFIDTag *Tag,
char MemBank,
short Address,
char Length,
char *Data,
char *TRData);