]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/parallel/pd.py
parallel: Limit number of probes to 8 for now.
[libsigrokdecode.git] / 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],