X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=scripts%2Ftransitioncounter.py;h=7c9c6a3e3d05bef37be6a57f399226968c034e4d;hp=cbf80680704aedfc0d53be61e363b30839047270;hb=a5fdab452f682e50cc05d6f392f750473fd93e78;hpb=d0f3d67746c89ee19f4c7a8d6f8858afd54347de diff --git a/scripts/transitioncounter.py b/scripts/transitioncounter.py index cbf8068..7c9c6a3 100644 --- a/scripts/transitioncounter.py +++ b/scripts/transitioncounter.py @@ -24,6 +24,9 @@ def sigrokdecode_count_transitions(inbuf): outbuf = '' + # FIXME: Get the data in the correct format in the first place. + inbuf = [ord(x) for x in inbuf] + # TODO: Don't hardcode the number of channels. channels = 8 @@ -36,37 +39,48 @@ def sigrokdecode_count_transitions(inbuf): # print type(inbuf) # Presets... - s = ord(inbuf[0]) - for i in xrange(channels): - curbit = (s & (1 << i) != 0) - oldbit[i] = curbit + oldbyte = inbuf[0] + for i in range(channels): + oldbit[i] = (oldbyte & (1 << i)) != 0 # Loop over all samples. # TODO: Handle LAs with more/less than 8 channels. for s in inbuf: - s = ord(s) # FIXME - for i in xrange(channels): + # Optimization: Skip identical bytes (no transitions). + if oldbyte == s: + continue + for i in range(channels): curbit = (s & (1 << i) != 0) - if (oldbit[i] == 0 and curbit == 1): + # Optimization: Skip identical bits (no transitions). + if oldbit[i] == curbit: + continue + elif (oldbit[i] == 0 and curbit == 1): rising[i] += 1 elif (oldbit[i] == 1 and curbit == 0): falling[i] += 1 oldbit[i] = curbit # Total number of transitions is the sum of rising and falling edges. - for i in xrange(channels): + for i in range(channels): transitions[i] = rising[i] + falling[i] outbuf += "Rising edges: " - for i in xrange(channels): + for i in range(channels): outbuf += str(rising[i]) + " " outbuf += "\nFalling edges: " - for i in xrange(channels): + for i in range(channels): outbuf += str(falling[i]) + " " outbuf += "\nTransitions: " - for i in xrange(channels): + for i in range(channels): outbuf += str(transitions[i]) + " " outbuf += "\n" return outbuf +# Use psyco (if available) as it results in huge performance improvements. +try: + import psyco + psyco.bind(sigrokdecode_count_transitions) +except ImportError: + pass +