With READ command you can read one or more location/s in the Carberry EEPROM.

Synopsis

EEPROM READ <ADDR> <LEN>

READ accepts two parameters as:

Param DescriptionRange
<ADDR>EEPROM location address in HEX notation.0x00 - 0x7F
<LEN> Number of bytes to read starting from <ADDR> 0x01 - 0x7F

Return

READ command returns the byte value (in HEX notation) of the location/s addressed by parameters.

Examples

Reading one byte

EEPROM READ 00 01
FF
OK

Reading eight bytes

EEPROM READ 00 08
FFFF00FF02FFFFFF
OK