]> sigrok.org Git - libsigrokdecode.git/commitdiff
parallel: Limit number of probes to 8 for now.
authorUwe Hermann <redacted>
Mon, 21 Oct 2013 20:59:25 +0000 (22:59 +0200)
committerUwe Hermann <redacted>
Mon, 21 Oct 2013 20:59:25 +0000 (22:59 +0200)
This will be increased again at some later point.

decoders/parallel/pd.py

index 476bf2fa04fb30c800f4d433e98a0228d09a194a..abb77c6c4a96185d6a1d67c06efbdceb38195a2a 100644 (file)
@@ -75,7 +75,7 @@ class Decoder(srd.Decoder):
     probes = [
         {'id': 'clk', 'name': 'CLK', 'desc': 'Clock line'},
     ]
-    optional_probes = probe_list(32)
+    optional_probes = probe_list(8)
     options = {
         'clock_edge': ['Clock edge to sample on', 'rising'],
         'wordsize': ['Word size of the data', 1],