User's Manual

CSL CS101-2 EPC CLASS 1 GEN 2 RFID HANDHELD READER USER'S MANUAL, VERSION 1.0
Copyright © Convergence Systems Limited, All Rights Reserved
115
Description:
This is the parameters for ISO 18000-6C 18K6CTagInventory operation.
RFID_18K6C_READ_PARMS
Prototype:
public struct RFID_18K6C_READ_PARMS{
public UInt32 length;
public RFID_18K6C_COMMON_PARMS common;
public RFID_18K6C_MEMORY_BANK bank;
public UInt16 offset;
public UInt16 count;
public UInt32 accessPassword;
};
Fields:
length: The length of the structure in bytes (=sizeof(RFID_18K6C_READ_PARMS)).
common: The ISO 18000-6C tag-protocol operation common parameters.
bank: The memmory bank to read from.
offset: The offset of the first 16-bit word to read.
count: The nubmer of 16-bit words to read.
If this value is zero and bank is RFID_18K6C_MEMORY_BANK_EPC, the read will return the
contents of the tag EPC memory starting at the 16-bit word specified by offset through the end of the
EPC.
If this value is zero and bank is not RFID_18K6C_MEMORY_BANK_EPC, the read will return,
for the chosen memory bank, data starting from the 16-bit word specified by offset to the end of the
memory bank.
accessPassword: The access password. A value of zero indicates no access password.
Description:
This is the parameters for ISO 18000-6C tag-read (18K6CTagRead) operation.
RFID_18K6C_WRITE_SEQUENTIAL_PARMS_T
Prototype:
public unsafe struct RFID_18K6C_WRITE_SEQUENTIAL_PARMS_T{
public UInt32 length; //= sizeof(RFID_18K6C_WRITE_SEQUENTIAL_PARMS);
public RFID_18K6C_MEMORY_BANK bank;
public UInt16 count; //1-8
public UInt16 offset;
public fixed ushort pData[8]; //fixed
};