summaryrefslogtreecommitdiff
path: root/decoders/i2cfilter/pd.py
diff options
context:
space:
mode:
authorBert Vermeulen <bert@biot.com>2013-11-14 17:25:53 +0100
committerBert Vermeulen <bert@biot.com>2013-11-15 22:05:54 +0100
commitbe465111b552c7c2a2262ac49758a30a8bf1b1d5 (patch)
treebd2b8782a9304574fd8309b10c6e4d14a6d3e16c /decoders/i2cfilter/pd.py
parent8a3c879201df27615f30b7c6b3a4072526c0e378 (diff)
downloadlibsigrokdecode-be465111b552c7c2a2262ac49758a30a8bf1b1d5.tar.gz
libsigrokdecode-be465111b552c7c2a2262ac49758a30a8bf1b1d5.zip
Use the new Decoder.register() API
Diffstat (limited to 'decoders/i2cfilter/pd.py')
-rw-r--r--decoders/i2cfilter/pd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/i2cfilter/pd.py b/decoders/i2cfilter/pd.py
index 4586cf7..4fe3a9c 100644
--- a/decoders/i2cfilter/pd.py
+++ b/decoders/i2cfilter/pd.py
@@ -48,7 +48,7 @@ class Decoder(srd.Decoder):
self.packets = [] # Local cache of I2C packets
def start(self):
- self.out_proto = self.add(srd.OUTPUT_PYTHON, 'i2c')
+ self.out_proto = self.register(srd.OUTPUT_PYTHON, proto_id='i2c')
if self.options['address'] not in range(0, 127 + 1):
raise Exception('Invalid slave (must be 0..127).')
if self.options['direction'] not in ('both', 'read', 'write'):