fix wrong i2c codes

This commit is contained in:
2018-05-08 11:14:52 +02:00
parent 630cd604a1
commit c4fc1a792a
+11 -10
View File
@@ -17,7 +17,17 @@
*Response:*
- u8[] - received bytes
### READ_REG (0x02)
### WRITE_REG (0x02)
Write a register; first writes the register number, then (in the same transaction)
the data. If the device supports it, can write multiple registers at once.
*Request:*
- u16 - address
- u8 - register number
- u8[] - bytes to write
### READ_REG (0x03)
Read a register value. First writes the register number, then reads a number of bytes.
For devices implementing auto-increment, the register width field can be used to read
@@ -31,15 +41,6 @@ multiple registers at once.
*Response:*
- u8[] - received bytes
### WRITE_REG (0x03)
Write a register; first writes the register number, then (in the same transaction)
the data. If the device supports it, can write multiple registers at once.
*Request:*
- u16 - address
- u8 - register number
- u8[] - bytes to write
## Events