projects
/
libsigrokdecode.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
| inline |
side by side
(parent:
74bb0af
)
parallel: Limit number of probes to 8 for now.
author
Uwe Hermann
<redacted>
Mon, 21 Oct 2013 20:59:25 +0000
(22:59 +0200)
committer
Uwe 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
patch
|
blob
|
blame
|
history
diff --git
a/decoders/parallel/pd.py
b/decoders/parallel/pd.py
index 476bf2fa04fb30c800f4d433e98a0228d09a194a..abb77c6c4a96185d6a1d67c06efbdceb38195a2a 100644
(file)
--- a/
decoders/parallel/pd.py
+++ b/
decoders/parallel/pd.py
@@
-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],