summaryrefslogtreecommitdiff
path: root/decoders/lm75
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2014-03-12 00:22:31 +0100
committerUwe Hermann <uwe@hermann-uwe.de>2014-03-12 00:22:31 +0100
commit4e4f8527de0927f2eb1d98e90b58e018ba28d341 (patch)
treed8e5e5fd2ce5d137e2ec4bce336aca1300b5c338 /decoders/lm75
parent3a851e5c7ba119cea6e8604a3f3e7ac27c80f536 (diff)
downloadlibsigrokdecode-4e4f8527de0927f2eb1d98e90b58e018ba28d341.tar.gz
libsigrokdecode-4e4f8527de0927f2eb1d98e90b58e018ba28d341.zip
Various PDs: Drop currently unsupported probes in stacked PDs.
At the moment we don't yet support PDs which take both input from another PD (which they're stacked on top of) and from one or more logic inputs/pins. This will be supported later on, and at that time we'll bring back these changes.
Diffstat (limited to 'decoders/lm75')
-rw-r--r--decoders/lm75/pd.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/decoders/lm75/pd.py b/decoders/lm75/pd.py
index 1fe03a6..bdd8cb0 100644
--- a/decoders/lm75/pd.py
+++ b/decoders/lm75/pd.py
@@ -48,12 +48,6 @@ class Decoder(srd.Decoder):
license = 'gplv2+'
inputs = ['i2c']
outputs = ['lm75']
- optional_probes = (
- {'id': 'os', 'name': 'OS', 'desc': 'Overtemperature shutdown'},
- {'id': 'a0', 'name': 'A0', 'desc': 'I²C slave address input 0'},
- {'id': 'a1', 'name': 'A1', 'desc': 'I²C slave address input 1'},
- {'id': 'a2', 'name': 'A2', 'desc': 'I²C slave address input 2'},
- )
options = (
{'id': 'sensor', 'desc': 'Sensor type', 'default': 'lm75'},
{'id': 'resolution', 'desc': 'Resolution', 'default': 9,