X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoders%2Fi2c.py;h=08d005301301371760ae816024f2a13d4c8024f6;hp=f098affcbbe966af5d208c85d4fc99c92ca51eaf;hb=7ce7775cb5a4e97264df62f43315d32504602072;hpb=b231546d63396fd6cac381b12b99caf07687e7e3 diff --git a/decoders/i2c.py b/decoders/i2c.py index f098aff..08d0053 100644 --- a/decoders/i2c.py +++ b/decoders/i2c.py @@ -65,52 +65,41 @@ # TODO: Implement support for 7bit and 10bit slave addresses. # TODO: Implement support for inverting SDA/SCL levels (0->1 and 1->0). # TODO: Implement support for detecting various bus errors. - -# -# I2C output format: -# -# The output consists of a (Python) list of I2C "packets", each of which -# has an (implicit) index number (its index in the list). -# Each packet consists of a Python dict with certain key/value pairs. -# -# TODO: Make this a list later instead of a dict? -# -# 'type': (string) -# - 'S' (START condition) -# - 'Sr' (Repeated START) -# - 'AR' (Address, read) -# - 'AW' (Address, write) -# - 'DR' (Data, read) -# - 'DW' (Data, write) -# - 'P' (STOP condition) -# 'range': (tuple of 2 integers, the min/max samplenumber of this range) -# - (min, max) -# - min/max can also be identical. -# 'data': (actual data as integer ???) TODO: This can be very variable... -# 'ann': (string; additional annotations / comments) -# # TODO: I2C address of slaves. # TODO: Handle multiple different I2C devices on same bus # -> we need to decode multiple protocols at the same time. -# # -# I2C input format: +# I2C protocol output format: +# +# The protocol output consists of a (Python) list of I2C "packets", each of +# which is of the form +# +# [ _i2c_command_, _data_, _ack_bit_ ] +# +# _i2c_command_ is one of: +# - 'START' (START condition) +# - 'START_REPEAT' (Repeated START) +# - 'ADDRESS_READ' (Address, read) +# - 'ADDRESS_WRITE' (Address, write) +# - 'DATA_READ' (Data, read) +# - 'DATA_WRITE' (Data, write) +# - 'STOP' (STOP condition) # -# signals: -# [[id, channel, description], ...] # TODO +# _data_ is the data or address byte associated with the ADDRESS_* and DATA_* +# command. For START, START_REPEAT and STOP, this is None. # -# Example: -# {'id': 'SCL', 'ch': 5, 'desc': 'Serial clock line'} -# {'id': 'SDA', 'ch': 7, 'desc': 'Serial data line'} -# ... +# _ack_bit_ is either 'ACK' or 'NACK', but may also be None. # -# {'inbuf': [...], -# 'signals': [{'SCL': }]} # import sigrokdecode +# annotation feed formats +ANN_SHIFTED = 0 +ANN_SHIFTED_SHORT = 1 +ANN_RAW = 2 + # values are verbose and short annotation, respectively protocol = { 'START': ['START', 'S'], @@ -123,19 +112,12 @@ protocol = { 'DATA_READ': ['DATA READ', 'DR'], 'DATA_WRITE': ['DATA WRITE', 'DW'], } -# export protocol keys as symbols for i2c decoders up the stack -EXPORT = [ protocol.keys() ] # States FIND_START = 0 FIND_ADDRESS = 1 FIND_DATA = 2 -# annotation feed formats -ANN_SHIFTED = 0 -ANN_SHIFTED_SHORT = 1 -ANN_RAW = 2 - class Decoder(sigrokdecode.Decoder): id = 'i2c' @@ -209,7 +191,7 @@ class Decoder(sigrokdecode.Decoder): cmd = 'START_REPEAT' else: cmd = 'START' - self.put(self.output_protocol, [ cmd ]) + self.put(self.output_protocol, [ cmd, None, None ]) self.put(self.output_annotation, [ ANN_SHIFTED, [protocol[cmd][0]] ]) self.put(self.output_annotation, [ ANN_SHIFTED_SHORT, [protocol[cmd][1]] ]) @@ -269,7 +251,7 @@ class Decoder(sigrokdecode.Decoder): cmd = 'DATA_WRITE' elif self.state == FIND_DATA and self.wr == 0: cmd = 'DATA_READ' - self.put(self.output_protocol, [ [cmd, d], [ack_bit] ] ) + self.put(self.output_protocol, [ cmd, d, ack_bit ] ) self.put(self.output_annotation, [ANN_SHIFTED, [ "%s" % protocol[cmd][0], "0x%02x" % d, @@ -292,7 +274,7 @@ class Decoder(sigrokdecode.Decoder): pass def found_stop(self, scl, sda): - self.put(self.output_protocol, [ 'STOP' ]) + self.put(self.output_protocol, [ 'STOP', None, None ]) self.put(self.output_annotation, [ ANN_SHIFTED, [protocol['STOP'][0]] ]) self.put(self.output_annotation, [ ANN_SHIFTED_SHORT, [protocol['STOP'][1]] ])