diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2014-03-12 00:22:31 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2014-03-12 00:22:31 +0100 |
commit | 4e4f8527de0927f2eb1d98e90b58e018ba28d341 (patch) | |
tree | d8e5e5fd2ce5d137e2ec4bce336aca1300b5c338 /decoders/maxim_ds28ea00 | |
parent | 3a851e5c7ba119cea6e8604a3f3e7ac27c80f536 (diff) | |
download | libsigrokdecode-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/maxim_ds28ea00')
-rw-r--r-- | decoders/maxim_ds28ea00/pd.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/decoders/maxim_ds28ea00/pd.py b/decoders/maxim_ds28ea00/pd.py index 2492c6b..9f120ae 100644 --- a/decoders/maxim_ds28ea00/pd.py +++ b/decoders/maxim_ds28ea00/pd.py @@ -44,12 +44,6 @@ class Decoder(srd.Decoder): license = 'gplv2+' inputs = ['onewire_network'] outputs = ['maxim_ds28ea00'] - optional_probes = ( - {'id': 'pioa', 'name': 'PIOA/DONE#', - 'desc': 'PIOA channel and chain output'}, - {'id': 'piob', 'name': 'PIOB/EN#', - 'desc': 'PIOB channel and chain output'}, - ) annotations = ( ('text', 'Human-readable text'), ) |