From 392a5d1ef4bb356be248589dad28d0bd83411c49 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Thu, 21 Jun 2018 21:49:14 +0200 Subject: jtag_ejtag: Move bin2int() to common/srdhelper. Also, rename from bin_to_int to bin2int() for consistency. --- decoders/common/srdhelper/mod.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'decoders/common') diff --git a/decoders/common/srdhelper/mod.py b/decoders/common/srdhelper/mod.py index b559c95..3c495b4 100644 --- a/decoders/common/srdhelper/mod.py +++ b/decoders/common/srdhelper/mod.py @@ -21,6 +21,9 @@ def bcd2int(b): return (b & 0x0f) + ((b >> 4) * 10) +def bin2int(s: str): + return int('0b' + s, 2) + def bitpack(bits): res = 0 for i, b in enumerate(bits): -- cgit v1.2.3-70-g09d2