]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/i2cfilter/pd.py
Probes, optional probes and annotations now take a tuple.
[libsigrokdecode.git] / decoders / i2cfilter / pd.py
index 91269c0862b186b7dc07c6960a328d84b355aab1..8be7828a0af5aeea7405eb7511e02dd47ea6512d 100644 (file)
@@ -31,15 +31,12 @@ class Decoder(srd.Decoder):
     license = 'gplv3+'
     inputs = ['i2c']
     outputs = ['i2c']
-    probes = []
-    optional_probes = []
     options = (
         {'id': 'address', 'desc': 'Address to filter out of the I²C stream',
             'default': 0},
         {'id': 'direction', 'desc': 'Direction to filter', 'default': 'both',
             'values': ('read', 'write', 'both')}
     )
-    annotations = []
 
     def __init__(self, **kwargs):
         self.state = None