diff options
Diffstat (limited to 'decoders/i2cdemux')
-rw-r--r-- | decoders/i2cdemux/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/i2cdemux/pd.py b/decoders/i2cdemux/pd.py index b075129..1e1d09c 100644 --- a/decoders/i2cdemux/pd.py +++ b/decoders/i2cdemux/pd.py @@ -68,7 +68,7 @@ class Decoder(srd.Decoder): # We're never seen this slave, add a new stream. self.slaves.append(databyte) - self.out_proto.append(self.add(srd.OUTPUT_PROTO, + self.out_proto.append(self.add(srd.OUTPUT_PYTHON, 'i2c-%s' % hex(databyte))) self.stream = self.streamcount self.streamcount += 1 |