]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/i2cfilter/pd.py
i2cfilter: Improve description of the "address" option.
[libsigrokdecode.git] / decoders / i2cfilter / pd.py
index 1dc7fd1ddfc3e73cb1a2b53f3d38fa091aec0922..a54baab247b88a474db2c08a3649d097ba2c5e52 100644 (file)
@@ -31,8 +31,9 @@ class Decoder(srd.Decoder):
     license = 'gplv3+'
     inputs = ['i2c']
     outputs = ['i2c']
+    tags = ['Util']
     options = (
-        {'id': 'address', 'desc': 'Address to filter out of the I²C stream',
+        {'id': 'address', 'desc': 'Slave address to filter (decimal)',
             'default': 0},
         {'id': 'direction', 'desc': 'Direction to filter', 'default': 'both',
             'values': ('read', 'write', 'both')}