summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerhard Sittig <gerhard.sittig@gmx.net>2020-07-23 17:23:24 +0200
committerGerhard Sittig <gerhard.sittig@gmx.net>2020-07-26 14:38:18 +0200
commit4a3c854ca958340507eb69adaaeaf31c6e678df6 (patch)
tree0fa40279570411d9988477b0cd1cea1e7e5f74d1
parentbd7efe23c7a2e6c6698a3652fc0ce0a0d5dab156 (diff)
downloadlibsigrokdecode-4a3c854ca958340507eb69adaaeaf31c6e678df6.tar.gz
libsigrokdecode-4a3c854ca958340507eb69adaaeaf31c6e678df6.zip
common: add LSB/MSB first bitpack variant with optional index
The CAN decoder collects bits in MSB first order. The SIRC decoder keeps lists of tuples with bits and their ss/es. Introduce common logic for LSB and MSB first arguments, and optional array index access, to reduce redundancy at callers'.
-rw-r--r--decoders/common/srdhelper/mod.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/decoders/common/srdhelper/mod.py b/decoders/common/srdhelper/mod.py
index 6c45af9..b56cce6 100644
--- a/decoders/common/srdhelper/mod.py
+++ b/decoders/common/srdhelper/mod.py
@@ -31,6 +31,20 @@ def bin2int(s: str):
def bitpack(bits):
return sum([b << i for i, b in enumerate(bits)])
+def bitpack_lsb(bits, idx=None):
+ '''Conversion from LSB first bit sequence to integer.'''
+ if idx is not None:
+ bits = [b[idx] for b in bits]
+ return bitpack(bits)
+
+def bitpack_msb(bits, idx=None):
+ '''Conversion from MSB first bit sequence to integer.'''
+ bits = bits[:]
+ if idx is not None:
+ bits = [b[idx] for b in bits]
+ bits.reverse()
+ return bitpack(bits)
+
def bitunpack(num, minbits=0):
res = []
while num or minbits > 0: