Commit 4fcb445e authored by Luca Ceresoli's avatar Luca Ceresoli Committed by Wolfram Sang
Browse files

docs: i2c: writing-clients: properly name the stop condition



In I2C there is no such thing as a "stop bit". Use the proper naming: "stop
condition".

Signed-off-by: default avatarLuca Ceresoli <luca@lucaceresoli.net>
Reported-by: default avatarJean Delvare <jdelvare@suse.de>
Reviewed-by: default avatarJean Delvare <jdelvare@suse.de>
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent ca5dbb02
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -357,9 +357,9 @@ read/written.

This sends a series of messages. Each message can be a read or write,
and they can be mixed in any way. The transactions are combined: no
stop bit is sent between transaction. The i2c_msg structure contains
for each message the client address, the number of bytes of the message
and the message data itself.
stop condition is issued between transaction. The i2c_msg structure
contains for each message the client address, the number of bytes of the
message and the message data itself.

You can read the file ``i2c-protocol`` for more information about the
actual I2C protocol.