diff options
author | Gerhard Sittig <gerhard.sittig@gmx.net> | 2020-11-07 15:44:37 +0100 |
---|---|---|
committer | Gerhard Sittig <gerhard.sittig@gmx.net> | 2020-11-11 20:21:07 +0100 |
commit | 3f77dc2aae971c4ba97ad81c851c63b681074410 (patch) | |
tree | 4e1359fa9d0d302174bd30976351beb9e53b30b1 | |
parent | 8838d01886f056b20da458fe55ad977997739b0c (diff) | |
download | libsigrokdecode-3f77dc2aae971c4ba97ad81c851c63b681074410.tar.gz libsigrokdecode-3f77dc2aae971c4ba97ad81c851c63b681074410.zip |
parallel: increase number of data lines to 16
The 'parallel' decoder supported 32 channels when it was introduced.
Commit a3b4f1684a8f lowered the channel count to 8 which is quite a
small number. Increase the number of supported channels to 16 again.
This should result in increased usability while keeping an acceptable
UI dialog size for the decoder properties.
-rw-r--r-- | decoders/parallel/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/parallel/pd.py b/decoders/parallel/pd.py index 71d8833..5acfb67 100644 --- a/decoders/parallel/pd.py +++ b/decoders/parallel/pd.py @@ -54,7 +54,7 @@ Packet: word <worditemcount> is 7, and so on. ''' -NUM_CHANNELS = 8 +NUM_CHANNELS = 16 class Pin: CLOCK = 0 |