FX3ConnectionReadFlash Method |
Read data from the FX3 non-volatile memory
Namespace:
FX3Api
Assembly:
FX3Api (in FX3Api.dll) Version: 2.9.4.0 (2.9.4)
Syntaxpublic byte[] ReadFlash(
uint ByteAddress,
ushort ReadLength
)
Public Function ReadFlash (
ByteAddress As UInteger,
ReadLength As UShort
) As Byte()
public:
array<unsigned char>^ ReadFlash(
unsigned int ByteAddress,
unsigned short ReadLength
)
member ReadFlash :
ByteAddress : uint32 *
ReadLength : uint16 -> byte[]
Parameters
- ByteAddress
- Type: SystemUInt32
The flash byte address to read from (valid range 0x0 - 0x40000) - ReadLength
- Type: SystemUInt16
The number of bytes to read. Max 4096
Return Value
Type:
ByteThe data read from the FX3 flash memory
See Also