summaryrefslogtreecommitdiff
path: root/decoders/avr_isp
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/avr_isp
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/avr_isp')
-rw-r--r--decoders/avr_isp/pd.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/decoders/avr_isp/pd.py b/decoders/avr_isp/pd.py
index 42ac48b..0168875 100644
--- a/decoders/avr_isp/pd.py
+++ b/decoders/avr_isp/pd.py
@@ -30,11 +30,8 @@ class Decoder(srd.Decoder):
longname = 'AVR In-System Programming'
desc = 'Protocol for in-system programming Atmel AVR MCUs.'
license = 'gplv2+'
- inputs = ['spi', 'logic']
+ inputs = ['spi']
outputs = ['avr_isp']
- optional_probes = (
- {'id': 'reset', 'name': 'RESET#', 'desc': 'Target AVR MCU reset'},
- )
annotations = (
('pe', 'Programming enable'),
('rsb0', 'Read signature byte 0'),