RFID API Documentation  1.0
Reference guide for RFID API
WRITE_ACCESS_PARAMS Struct Reference

This struct contains the parameters for Write Access Operation. More...

Data Fields

MEMORY_BANK memoryBank
 Memory bank on which data is to be written to. More...
 
UINT16 byteOffset
 Byte offset; Addresss of the first byte to be written to the chosen memory bank. More...
 
UINT8pWriteData
 Pointer to a UINT8 array which contains the data to be written. More...
 
UINT16 writeDataLength
 Length of the array pWriteData. More...
 
UINT32 accessPassword
 Password to be used for the Access operation. More...
 
LPVOID lpReserved [4]
 Reserved for future. More...
 

Detailed Description

This struct contains the parameters for Write Access Operation.

Field Documentation

◆ memoryBank

MEMORY_BANK WRITE_ACCESS_PARAMS::memoryBank

Memory bank on which data is to be written to.

◆ byteOffset

UINT16 WRITE_ACCESS_PARAMS::byteOffset

Byte offset; Addresss of the first byte to be written to the chosen memory bank.

Since Access operation is WORD aligned, offset be in double bytes.

◆ pWriteData

UINT8* WRITE_ACCESS_PARAMS::pWriteData

Pointer to a UINT8 array which contains the data to be written.

Write operation occurs only on word boundaries, hence it is required to input this field accordingly. For e.g The word 0x1122 will be UINT8 writeData[2] = {0x11, 0x22}.

◆ writeDataLength

UINT16 WRITE_ACCESS_PARAMS::writeDataLength

Length of the array pWriteData.

◆ accessPassword

UINT32 WRITE_ACCESS_PARAMS::accessPassword

Password to be used for the Access operation.

◆ lpReserved

LPVOID WRITE_ACCESS_PARAMS::lpReserved[4]

Reserved for future.