Everything

csplus.write_memory


This function writes memory value.

[Specification format]

csplus.write_memory(session_id, address, length, data)

[Argument(s)]

引数

説明

session_id

This argument is ignored in this version.

address

The address to write memory to

length

The number of byte to write

data

The memory value to be written in hexadecimal format

[Return value]

None

[Detailed description]

-

The byte order of data written in memory is same as the byte order of the input data regardless endian setting (depend on the endian of IO registers area, the byte order can be different).

[Example of use]

>>> csplus.write_memory(session_id, 0x2, 2, "1234")
>>> csplus.read_memory(session_id, 0x2, 2)
'1234'
>>>