]> sigrok.org Git - libsigrokdecode.git/blame - decoders/i2c/__init__.py
i2c: Moved extensive protocol docs to the wiki.
[libsigrokdecode.git] / decoders / i2c / __init__.py
CommitLineData
64c29e28 1##
50bd5d25 2## This file is part of the libsigrokdecode project.
64c29e28
UH
3##
4## Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; either version 2 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program; if not, write to the Free Software
18## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19##
20
156509ca
UH
21'''
22I2C protocol decoder.
23
24The Inter-Integrated Circuit (I2C) bus is a bidirectional, multi-master
25bus using two signals (SCL = serial clock line, SDA = serial data line).
26
156509ca
UH
27Protocol output format:
28
29I2C packet:
f9d87f64 30[<cmd>, <data>]
156509ca 31
f9d87f64 32<cmd> is one of:
71077f34
UH
33 - 'START' (START condition)
34 - 'START REPEAT' (Repeated START condition)
35 - 'ADDRESS READ' (Slave address, read)
36 - 'ADDRESS WRITE' (Slave address, write)
37 - 'DATA READ' (Data, read)
38 - 'DATA WRITE' (Data, write)
39 - 'STOP' (STOP condition)
40 - 'ACK' (ACK bit)
41 - 'NACK' (NACK bit)
156509ca
UH
42
43<data> is the data or address byte associated with the 'ADDRESS*' and 'DATA*'
f9d87f64
UH
44command. Slave addresses do not include bit 0 (the READ/WRITE indication bit).
45For example, a slave address field could be 0x51 (instead of 0xa2).
46For 'START', 'START REPEAT', 'STOP', 'ACK', and 'NACK' <data> is None.
156509ca 47
156509ca
UH
48'''
49
24c74fd3 50from .pd import *
64c29e28 51