diff options
Diffstat (limited to 'decoders/ebr30a_i2c_demux')
-rw-r--r-- | decoders/ebr30a_i2c_demux/ebr30a_i2c_demux.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/ebr30a_i2c_demux/ebr30a_i2c_demux.py b/decoders/ebr30a_i2c_demux/ebr30a_i2c_demux.py index 50a1dbe..4c4a8e4 100644 --- a/decoders/ebr30a_i2c_demux/ebr30a_i2c_demux.py +++ b/decoders/ebr30a_i2c_demux/ebr30a_i2c_demux.py @@ -64,7 +64,7 @@ class Decoder(srd.Decoder): # get the whole chunk of packets (from START to STOP). def decode(self, ss, es, data): - cmd, databyte, ack_bit = data + cmd, databyte = data # Add the I2C packet to our local cache. self.packets.append([ss, es, data]) |