]> sigrok.org Git - libsigrokdecode.git/commitdiff
graycode: Move bitpack/bitunpack to common/.
authorUwe Hermann <redacted>
Sat, 9 Dec 2017 16:25:53 +0000 (17:25 +0100)
committerUwe Hermann <redacted>
Sat, 9 Dec 2017 16:25:53 +0000 (17:25 +0100)
decoders/common/srdhelper/mod.py
decoders/graycode/pd.py

index 4871205f08261aad2786a175ee2fe48687f5941a..b559c95edc5f280ae727fb6c34a372143b01be17 100644 (file)
 # Return the specified BCD number (max. 8 bits) as integer.
 def bcd2int(b):
     return (b & 0x0f) + ((b >> 4) * 10)
+
+def bitpack(bits):
+    res = 0
+    for i, b in enumerate(bits):
+        res |= b << i
+    return res
+
+def bitunpack(num, minbits=0):
+    res = []
+    while num or minbits > 0:
+        res.append(num & 1)
+        num >>= 1
+        minbits -= 1
+    return tuple(res)
index 2edc8373c61993ed016e2b20b8ae05bf12dd1cc0..f500c8393bc77013ddc141e2d825be741b5fdfbf 100644 (file)
 import math
 import sigrokdecode as srd
 from collections import deque
-
-def bitpack(bits):
-    res = 0
-    for i, b in enumerate(bits):
-        res |= b << i
-    return res
-
-def bitunpack(num, minbits=0):
-    res = []
-    while num or minbits > 0:
-        res.append(num & 1)
-        num >>= 1
-        minbits -= 1
-    return tuple(res)
+from common.srdhelper import bitpack, bitunpack
 
 def gray_encode(plain):
     return plain & (plain >> 1)