Call BasicCard CLEAR EEPROM command.

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

Syntax

C#
protected virtual void CmdClearEeprom(
	int startAddress,
	int length
)
Visual Basic
Protected Overridable Sub CmdClearEeprom ( 
	startAddress As Integer,
	length As Integer
)
Visual C++
protected:
virtual void CmdClearEeprom(
	int startAddress, 
	int length
)
F#
abstract CmdClearEeprom : 
        startAddress : int * 
        length : int -> unit 
override CmdClearEeprom : 
        startAddress : int * 
        length : int -> unit 

Parameters

startAddress
Type: System..::..Int32
Start address for clear operation.
length
Type: System..::..Int32
Number of bytes to erase.

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