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

Synopsis

SRAM READ <ADDR> <LEN>

READ accepts two parameters as:

ParamDescriptionRange
<ADDR> SRAM location address in HEX notation.0x00 - 0x3F
<LEN> Number of bytes to read starting from <ADDR> 0x01 - 0x3F

Return

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

Examples

Reading one byte

SRAM READ 00 01
FF
OK

Reading eight bytes

SRAM READ 00 08
FFFFFFFFFFFFFFFF
OK