Main index | Section 8 | Options |
The options are as follows:
| |
7-bit address on the I2C device to operate on (hex). | |
| binary mode - when performing a read operation, the data read from the device is output in binary format on stdout; when doing a write, the binary data to be written to the device is read from stdin. |
| |
number of bytes to transfer (dec). | |
| transfer direction: r - read, w - write. |
| |
I2C bus to use (default is /dev/iic0). | |
| |
addressing mode, i.e., I2C bus operations performed after the offset for the transfer has been written to the device and before the actual read/write operation. | |
tr | complete-transfer |
ss | stop then start |
rs | repeated start |
no | none |
| skip address - address(es) to be skipped during bus scan. There are two ways to specify addresses to ignore: by range 'a..b' or using selected addresses 'a:b:c'. This option is available only when "-s" is used. |
| offset within the device for data transfer (hex). The default is zero. Use "-w 0" to disable writing of the offset to the slave. |
| reset the controller. |
| scan the bus for devices. |
| be verbose. |
|
device addressing width (in bits).
This is used to determine how to pass
offset
specified with
|
It is very easy to render the whole system unusable when such configuration data is deleted or altered, so use the "-d w" (write) command only if you know exactly what you are doing.
Also avoid ungraceful interrupting of an ongoing transaction on the I2C bus, as it can lead to potentially dangerous effects. Consider the following scenario: when the host CPU is reset (for whatever reason) in the middle of a started I2C transaction, the I2C slave device could be left in write mode waiting for data or offset to arrive. When the CPU reinitializes itself and talks to this I2C slave device again, the commands and other control info it sends are treated by the slave device as data or offset it was waiting for, and there's great potential for corruption if such a write is performed.
i2c -s
i2c -s -n 0x56:0x45
i2c -s -n 0x34..0x56
i2c -a 0x56 -d r -c 8
i2c -a 0x56 -d w -c 16 -o 0x10 -b < data.bin
i2c -a 0x56 -f /dev/iic1 -d r -c 0x4 -b | i2c -a 0x57 -f /dev/iic0 -d w -c 4 -b
i2c -f /dev/iic1 -r
I2C (8) | May 22, 2019 |
Main index | Section 8 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.
“ | There are 10 types of people in the world: those who understand binary, and those who don't. | ” |