![]() |
RFID API Documentation
1.0
Reference guide for RFID API
|
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... | |
| UINT8 * | pWriteData |
| 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... | |
This struct contains the parameters for Write Access Operation.
| MEMORY_BANK WRITE_ACCESS_PARAMS::memoryBank |
Memory bank on which data is to be written to.
| 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.
| 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}.
| UINT16 WRITE_ACCESS_PARAMS::writeDataLength |
Length of the array pWriteData.
| UINT32 WRITE_ACCESS_PARAMS::accessPassword |
Password to be used for the Access operation.
| LPVOID WRITE_ACCESS_PARAMS::lpReserved[4] |
Reserved for future.