With WRITE command you can write one or more location/s in the Carberry EEPROM.

Synopsis

EEPROM WRITE <ADDR> <DATA>[<DATA>]

WRITE accepts at least two parameters as:

ParamDescriptionRange
<ADDR> EEPROM location address in HEX notation where start to write.0x00 - 0x7F
<DATA> Data byte to write 0x00 - 0xFF
[<DATA>] Other optional bytes to write in sequence 0x00 - 0xFF

Notes

  1. Multiple data bytes must be always represented by two characters, whithout spaces from each other.

Return

WRITE command returns OK.

Examples

Writing one byte

EEPROM WRITE 10 AA
OK

Writing six bytes

EEPROM WRITE 20 AABBCCDDEEFF
OK  

Verify

EEPROM READ 20 06
AABBCCDDEEFF
OK