With READ command you can read one or more location/s in the Apple MFI Coprocessor fitted on Carberry.

Synopsis

MFI READ <ADDR> <LEN>

READ accepts two parameters as:

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

Note

In the command parameters, you can omit “0x” before parameters.

Return

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

Examples

Reading one byte

MFI READ 0x00 0x01
03
OK

Reading eight bytes

MFI READ 0x50 0x08
1122334455667788
OK