]> sigrok.org Git - libsigrokdecode.git/commitdiff
Remove unused probes and options
authorBert Vermeulen <redacted>
Sun, 9 Mar 2014 23:43:27 +0000 (00:43 +0100)
committerBert Vermeulen <redacted>
Sun, 9 Mar 2014 23:47:30 +0000 (00:47 +0100)
32 files changed:
decoders/avr_isp/pd.py
decoders/can/pd.py
decoders/dcf77/pd.py
decoders/ds1307/pd.py
decoders/edid/pd.py
decoders/guess_bitrate/pd.py
decoders/i2c/pd.py
decoders/i2cdemux/pd.py
decoders/i2cfilter/pd.py
decoders/i2s/pd.py
decoders/jtag/pd.py
decoders/jtag_stm32/pd.py
decoders/lm75/pd.py
decoders/lpc/pd.py
decoders/maxim_ds28ea00/pd.py
decoders/midi/pd.py
decoders/mlx90614/pd.py
decoders/mx25lxx05d/pd.py
decoders/mxc6225xu/pd.py
decoders/nunchuk/pd.py
decoders/onewire_network/pd.py
decoders/pan1321/pd.py
decoders/parallel/pd.py
decoders/rgb_led_spi/pd.py
decoders/rtc8564/pd.py
decoders/sdcard_spi/pd.py
decoders/tlc5620/pd.py
decoders/uart/pd.py
decoders/usb_packet/pd.py
decoders/usb_signalling/pd.py
decoders/xfp/pd.py
decoders/z80/pd.py

index 809cf4426978a2ef59a9f747ef8b8a0c29bcff90..8f3e128e1708740b816ccc257fb9de1bece70026 100644 (file)
@@ -32,11 +32,9 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['spi', 'logic']
     outputs = ['avr_isp']
-    probes = []
     optional_probes = [
         {'id': 'reset', 'name': 'RESET#', 'desc': 'Target AVR MCU reset'},
     ]
-    options = {}
     annotations = [
         ['pe', 'Programming enable'],
         ['rsb0', 'Read signature byte 0'],
index e2b55fa3c62f89fd3a2a3e6f9403710b1a37084e..ff60a90690a6ebe79ad968a88b2beae9d90b85a8 100644 (file)
@@ -32,7 +32,6 @@ class Decoder(srd.Decoder):
     probes = [
         {'id': 'can_rx', 'name': 'CAN RX', 'desc': 'CAN bus line'},
     ]
-    optional_probes = []
     options = (
         {'id': 'bitrate', 'desc': 'Bitrate', 'default': 1000000}, # 1Mbit/s
         {'id': 'sample_point', 'desc': 'Sample point', 'default': 70}, # 70%
index 21da4f63ccef4569ff8e6465152e292a6b97b44e..94f5d2cd95c059655b75d77a9db3f9cb023b28d2 100644 (file)
@@ -37,8 +37,6 @@ class Decoder(srd.Decoder):
     probes = [
         {'id': 'data', 'name': 'DATA', 'desc': 'DATA line'},
     ]
-    optional_probes = []
-    options = {}
     annotations = [
         ['start-of-minute', 'Start of minute'],
         ['special-bits', 'Special bits (civil warnings, weather forecast)'],
index 97431e01587dd6d4f933cc6f7b5e295153766f0f..6c36f04bacb31cb7f95d8235c7d6ea964565b96d 100644 (file)
@@ -44,9 +44,6 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['i2c']
     outputs = ['ds1307']
-    probes = []
-    optional_probes = []
-    options = {}
     annotations = [
         ['text', 'Human-readable text'],
     ]
index adeb6aec20c657fbb040730a362d7cc95d493e09..f27cf93b80e4ccf2da1a1b14112b9f5b2308da6d 100644 (file)
@@ -81,9 +81,6 @@ class Decoder(srd.Decoder):
     license = 'gplv3+'
     inputs = ['i2c']
     outputs = ['edid']
-    probes = []
-    optional_probes = []
-    options = {}
     annotations = [
         ['fields', 'EDID structure fields'],
         ['sections', 'EDID structure sections'],
index b88a8977a9b948cfaf6be965e1df66acb147e974..8d28444dfce6e8414584e5338ba4a86657d5d167 100644 (file)
@@ -32,8 +32,6 @@ class Decoder(srd.Decoder):
     probes = [
         {'id': 'data', 'name': 'Data', 'desc': 'Data line'},
     ]
-    optional_probes = []
-    options = {}
     annotations = [
         ['bitrate', 'Bitrate / baudrate'],
     ]
index 9cbdd533c4012f01f706f6b5f1f4479f18e11ae4..97614ae7bbd5066b610f2337b7f594db8927deea 100644 (file)
@@ -76,7 +76,6 @@ class Decoder(srd.Decoder):
         {'id': 'scl', 'name': 'SCL', 'desc': 'Serial clock line'},
         {'id': 'sda', 'name': 'SDA', 'desc': 'Serial data line'},
     ]
-    optional_probes = []
     options = (
         {'id': 'address_format', 'desc': 'Displayed slave address format',
             'default': 'shifted', 'values': ('shifted', 'unshifted')},
index 12ebb88447097903d69b7dab6ad03b6634e125aa..dd773b54359155ceaf2fc13750e9de7774e8499c 100644 (file)
@@ -29,9 +29,6 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['i2c']
     outputs = [] # TODO: Only known at run-time.
-    probes = []
-    optional_probes = []
-    options = {}
     annotations = []
 
     def __init__(self, **kwargs):
index 91269c0862b186b7dc07c6960a328d84b355aab1..9156803aa109d550dc0290563cee392c0b7b39cb 100644 (file)
@@ -31,8 +31,6 @@ class Decoder(srd.Decoder):
     license = 'gplv3+'
     inputs = ['i2c']
     outputs = ['i2c']
-    probes = []
-    optional_probes = []
     options = (
         {'id': 'address', 'desc': 'Address to filter out of the I²C stream',
             'default': 0},
index 73bfa6f634bec9547fb387233ec469df59e1054c..1d1a7a43e0008830e9a014ab45cc17092ed80f9e 100644 (file)
@@ -47,8 +47,6 @@ class Decoder(srd.Decoder):
         {'id': 'ws', 'name': 'WS', 'desc': 'Word select line'},
         {'id': 'sd', 'name': 'SD', 'desc': 'Serial data line'},
     ]
-    optional_probes = []
-    options = {}
     annotations = [
         ['left', 'Left channel'],
         ['right', 'Right channel'],
index 8eb81c08d2ea294317f293c2926d65e6b3157e52..0bb4069d66cabc8fe27c8b093f8bfd382cf49db2 100644 (file)
@@ -73,7 +73,6 @@ class Decoder(srd.Decoder):
         {'id': 'srst', 'name': 'SRST#', 'desc': 'System reset'},
         {'id': 'rtck', 'name': 'RTCK',  'desc': 'Return clock signal'},
     ]
-    options = {}
     annotations = [[s.lower(), s] for s in jtag_states]
 
     def __init__(self, **kwargs):
index 7d6a71d2ba8180707830359020eb50ac3b674cfc..cc298d6fd61427417ad0403d72aeac5eb3845155 100644 (file)
@@ -127,9 +127,6 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['jtag']
     outputs = ['jtag_stm32']
-    probes = []
-    optional_probes = []
-    options = {}
     annotations = [
         ['text', 'Human-readable text'],
     ]
index 84cc26a01b952fe91aa1944510c8ef53babb9612..c492c4b34eb16abe3975135b7e5a8bc657f3c399 100644 (file)
@@ -48,7 +48,6 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['i2c']
     outputs = ['lm75']
-    probes = []
     optional_probes = [
         {'id': 'os', 'name': 'OS', 'desc': 'Overtemperature shutdown'},
         {'id': 'a0', 'name': 'A0', 'desc': 'I²C slave address input 0'},
index 7153110a91c4cf91333014c9ad386802087b1665..ef782e0cdc91f3cf86fdd6ada31c680d03c35c97 100644 (file)
@@ -121,7 +121,6 @@ class Decoder(srd.Decoder):
         {'id': 'lpcpd',  'name': 'LPCPD#',  'desc': 'Power down'},
         {'id': 'lsmi',   'name': 'LSMI#',   'desc': 'System Management Interrupt'},
     ]
-    options = {}
     annotations = [
         ['warnings', 'Warnings'],
         ['start', 'Start'],
index 6e1125a73c6e4d84f545466bee066a8cfc3dbd9d..312475ec4169720745f145dc08f3d64e454fa01b 100644 (file)
@@ -44,14 +44,12 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['onewire_network']
     outputs = ['maxim_ds28ea00']
-    probes = []
     optional_probes = [
         {'id': 'pioa', 'name': 'PIOA/DONE#',
          'desc': 'PIOA channel and chain output'},
         {'id': 'piob', 'name': 'PIOB/EN#',
          'desc': 'PIOB channel and chain output'},
     ]
-    options = {}
     annotations = [
         ['text', 'Human-readable text'],
     ]
index b20dcc3ce00b554110e6f0b8e2dc0aa236efbece..b6cbd607cc68165b2a1498898add40bce9bdbba6 100644 (file)
@@ -33,9 +33,6 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['uart']
     outputs = ['midi']
-    probes = []
-    optional_probes = []
-    options = {}
     annotations = [
         ['text-verbose', 'Human-readable text (verbose)'],
     ]
index 14451c86dd462581b1a144a0c3881431682e0ef4..aa63458ffeb9f76c238ddac0815a90c8867cd0bd 100644 (file)
@@ -29,9 +29,6 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['i2c']
     outputs = ['mlx90614']
-    probes = []
-    optional_probes = []
-    options = {}
     annotations = [
         ['celsius', 'Temperature in degrees Celsius'],
         ['kelvin', 'Temperature in Kelvin'],
index 76319db61b52aa5b0156f0133e202b441cc98442..c7dbd20f5035ddc1141284667448f3b9692b84f7 100644 (file)
@@ -91,12 +91,10 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['spi', 'logic']
     outputs = ['mx25lxx05d']
-    probes = []
     optional_probes = [
         {'id': 'hold', 'name': 'HOLD#', 'desc': 'Pause device w/o deselecting it'},
         {'id': 'wp_acc', 'name': 'WP#/ACC', 'desc': 'Write protect'},
     ]
-    options = {}
     annotations = cmd_annotation_classes() + [
         ['bits', 'Bits'],
         ['bits2', 'Bits2'],
index 46c6c09dc95e5e1871c00c254734d450f15c6248..c236070167a1e69b91f0d3c100062913e10adb39 100644 (file)
@@ -68,11 +68,9 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['i2c']
     outputs = ['mxc6225xu']
-    probes = []
     optional_probes = [
         {'id': 'int', 'name': 'INT', 'desc': 'DTOS interrupt output pin'},
     ]
-    options = {}
     annotations = [
         ['text', 'Human-readable text'],
     ]
index d4fe34afeb28dae8f07f5471f616b092503df7ca..5fd01d2c9f81b18f5f3609d87a772772c0c73df7 100644 (file)
@@ -29,9 +29,6 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['i2c']
     outputs = ['nunchuck']
-    probes = []
-    optional_probes = []
-    options = {}
     annotations = [
         ['text-verbose', 'Human-readable text (verbose)'],
         ['text', 'Human-readable text'],
index a80132e2a23a41d5151c097ce9e2c185a0999d4e..3064481281e7638363084ca06fe065d3c84ca345 100644 (file)
@@ -41,9 +41,6 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['onewire_link']
     outputs = ['onewire_network']
-    probes = []
-    optional_probes = []
-    options = {}
     annotations = [
         ['text', 'Human-readable text'],
     ]
index f345506cdac69aea42cc258dcfe1a4dfa4c175e7..e7ccd60378070035e57d76337034a8cd1814ddb8 100644 (file)
@@ -33,9 +33,6 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['uart']
     outputs = ['pan1321']
-    probes = []
-    optional_probes = []
-    options = {}
     annotations = [
         ['text-verbose', 'Human-readable text (verbose)'],
         ['text', 'Human-readable text'],
index 8f2176c70e8988c439246fdf2f44f670710a9457..43c5d54709292c9153b403b21624dc6fec7d8684 100644 (file)
@@ -70,7 +70,6 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['logic']
     outputs = ['parallel']
-    probes = []
     optional_probes = probe_list(8)
     options = (
         {'id': 'clock_edge', 'desc': 'Clock edge to sample on',
index b5f61b8d533c21424b2a27ce7970f6a593e1ff05..1c6112282830cf93f110a3874a25c05d0ceb128f 100644 (file)
@@ -29,9 +29,6 @@ class Decoder(srd.Decoder):
     license = 'gplv2'
     inputs = ['spi']
     outputs = ['rgb_led_spi']
-    probes = []
-    optional_probes = []
-    options = {}
     annotations = [
         ['rgb', 'RGB values'],
     ]
index 8a2fbf9592abb7a5597d8eb8f762a8e6096cb6af..6108c267239b4d488789ae4d42845ca83de34de9 100644 (file)
@@ -33,13 +33,11 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['i2c']
     outputs = ['rtc8564']
-    probes = []
     optional_probes = [
         {'id': 'clkout', 'name': 'CLKOUT', 'desc': 'Clock output'},
         {'id': 'clkoe', 'name': 'CLKOE', 'desc': 'Clock output enable'},
         {'id': 'int', 'name': 'INT#', 'desc': 'Interrupt'},
     ]
-    options = {}
     annotations = \
         [['reg-0x%02x' % i, 'Register 0x%02x' % i] for i in range(8 + 1)] + [
         ['read', 'Read date/time'],
index 3c25f18c8d02f0bb1888bb152847dca41938f6de..c61c8c25833bd6e277762aaba189eeffe4179bec 100644 (file)
@@ -78,9 +78,6 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['spi']
     outputs = ['sdcard_spi']
-    probes = []
-    optional_probes = []
-    options = {}
     annotations = \
         [['cmd%d' % i, 'CMD%d' % i] for i in range(63 + 1)] + [
         ['cmd-desc', 'Command description'],
index 4097c458e793c6f59488760d54a2834547b12082..b9a52231a00b2c6f10d2c7eee862a099c022b44f 100644 (file)
@@ -44,7 +44,6 @@ class Decoder(srd.Decoder):
         {'id': 'load', 'name': 'LOAD', 'desc': 'Serial interface load control'},
         {'id': 'ldac', 'name': 'LDAC', 'desc': 'Load DAC'},
     ]
-    options = {}
     annotations = [
         ['dac-select', 'DAC select'],
         ['gain', 'Gain'],
index f01cacece3e86b18274432a0ba1e4d87a7b0e4f2..0dd7eb031ec7c7d7358cc9e73eb3fe21f3f0b446 100644 (file)
@@ -78,7 +78,6 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['logic']
     outputs = ['uart']
-    probes = []
     optional_probes = [
         # Allow specifying only one of the signals, e.g. if only one data
         # direction exists (or is relevant).
index d45e3bddc5ac9eb9b322ee88d77d088e609521ca..82e5eeeab346e9b10f4c8cbc8acb622f0b8b22cb 100644 (file)
@@ -151,8 +151,6 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['usb_signalling']
     outputs = ['usb_packet']
-    probes = []
-    optional_probes = []
     options = (
         {'id': 'signalling', 'desc': 'Signalling', 'default': 'full-speed'},
     )
index 6f3ceffca75e771f22653b095bff6eaf74b877e1..823d6255226bbd14b79600ece47a86c0061dfa39 100644 (file)
@@ -79,7 +79,6 @@ class Decoder(srd.Decoder):
         {'id': 'dp', 'name': 'D+', 'desc': 'USB D+ signal'},
         {'id': 'dm', 'name': 'D-', 'desc': 'USB D- signal'},
     ]
-    optional_probes = []
     options = (
         {'id': 'signalling', 'desc': 'Signalling',
             'default': 'full-speed', 'values': ('full-speed', 'low-speed')},
index cb67c2d1987556c6c47378149aadae76e4b5ca61..63e8aec148f9958e7e87f0595fbaec147dd87785 100644 (file)
@@ -199,9 +199,6 @@ class Decoder(srd.Decoder):
     license = 'gplv3+'
     inputs = ['i2c']
     outputs = ['xfp']
-    probes = []
-    optional_probes = []
-    options = {}
     annotations = [
         ['fieldnames-and-values', 'XFP structure field names and values'],
         ['fields', 'XFP structure fields'],
index d98df7c8f91b79cb845aa24617e690a3eb5410ba..130b147de718711c737bf00c744a30f5836855c7 100644 (file)
@@ -87,7 +87,6 @@ class Decoder(srd.Decoder):
         {'id': 'a%d' % i, 'name': 'A%d' % i, 'desc': 'Address bus line %d' % i}
             for i in range(16)
     ]
-    options = {}
     annotations = [
         ['addr',  'Memory or I/O address'],
         ['memrd', 'Byte read from memory'],