diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2019-12-09 21:22:07 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2019-12-10 21:41:36 +0100 |
commit | dff91b50165f92f6ef24546b668a9e2162bf1b6b (patch) | |
tree | 8340166d60fcd1713469cddbc8815b8092d1fad6 | |
parent | a8a139edd96701b0a26234665dadb253d2ea5b7d (diff) | |
download | libsigrokdecode-dff91b50165f92f6ef24546b668a9e2162bf1b6b.tar.gz libsigrokdecode-dff91b50165f92f6ef24546b668a9e2162bf1b6b.zip |
i2cfilter: Improve description of the "address" option.
-rw-r--r-- | decoders/i2cfilter/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/i2cfilter/pd.py b/decoders/i2cfilter/pd.py index 7798e17..a54baab 100644 --- a/decoders/i2cfilter/pd.py +++ b/decoders/i2cfilter/pd.py @@ -33,7 +33,7 @@ class Decoder(srd.Decoder): 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')} |