Call BasicCard WRITE EEPROM command..

Namespace: BasicCard.BasicCards
Assembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)

Syntax

C#
protected virtual void CmdWriteEeprom(
	int startAddress,
	byte[] data
)
Visual Basic
Protected Overridable Sub CmdWriteEeprom ( 
	startAddress As Integer,
	data As Byte()
)
Visual C++
protected:
virtual void CmdWriteEeprom(
	int startAddress, 
	array<unsigned char>^ data
)
F#
abstract CmdWriteEeprom : 
        startAddress : int * 
        data : byte[] -> unit 
override CmdWriteEeprom : 
        startAddress : int * 
        data : byte[] -> unit 

Parameters

startAddress
Type: System..::..Int32
Start address for write operation.
data
Type: array<System..::..Byte>[]()[][]
Data bytes to write.

Remarks

This command is for loading application images into a BasicCard. It is not recommended to use this command on application level. Using this command may destroy the BasicCard.

See Also