]> sigrok.org Git - libsigrokdecode.git/blame - decoders/transitioncounter.py
Decoders: Use 4 spaces for indentation as per PEP-8.
[libsigrokdecode.git] / decoders / transitioncounter.py
CommitLineData
1c6fa20f
UH
1##
2## This file is part of the sigrok project.
3##
4## Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; either version 2 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program; if not, write to the Free Software
18## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19##
ad2dc0de 20
922763ab 21import sigrok
1c6fa20f 22
71a133c8
KS
23lastsample = None
24oldbit = None
25transitions = None
26rising = None
27falling = None
922763ab 28
71a133c8 29def decode(sampledata):
ad2dc0de
UH
30 """Counts the low->high and high->low transitions in the specified
31 channel(s) of the signal."""
32 global lastsample
33 global oldbit, transitions, rising, falling
34
35 # TODO: Don't hardcode the number of channels.
36 channels = 8
37
38 # FIXME: Get the data in the correct format in the first place.
39 inbuf = [ord(x) for x in sampledata['data']]
c11d3c15 40
ad2dc0de
UH
41 if lastsample == None:
42 oldbit = [0] * channels
43 transitions = [0] * channels
44 rising = [0] * channels
45 falling = [0] * channels
d0f3d677 46
ad2dc0de
UH
47 # Initial values.
48 lastsample = inbuf[0]
49 for i in range(channels):
50 oldbit[i] = (lastsample & (1 << i)) >> i
1c6fa20f 51
ad2dc0de
UH
52 # TODO: Handle LAs with more/less than 8 channels.
53 for s in inbuf:
54 # Optimization: Skip identical bytes (no transitions).
55 if lastsample != s:
56 for i in range(channels):
57 curbit = (s & (1 << i)) >> i
58 # Optimization: Skip identical bits (no transitions).
59 if oldbit[i] == curbit:
60 continue
61 elif (oldbit[i] == 0 and curbit == 1):
62 rising[i] += 1
63 elif (oldbit[i] == 1 and curbit == 0):
64 falling[i] += 1
65 oldbit[i] = curbit
d0f3d677 66
ad2dc0de
UH
67 # Total number of transitions is the sum of rising and falling edges.
68 for i in range(channels):
69 transitions[i] = rising[i] + falling[i]
d0f3d677 70
ad2dc0de
UH
71 lastsample = s
72 print(transitions)
1c6fa20f 73
ad2dc0de 74 sigrok.put(sampledata)
1c6fa20f 75
922763ab 76register = {
ad2dc0de
UH
77 'id': 'transitioncounter',
78 'name': 'Transition counter',
79 'longname': '...',
80 'desc': 'Counts rising/falling edges in the signal.',
81 'longdesc': '...',
82 'author': 'Uwe Hermann',
83 'email': 'uwe@hermann-uwe.de',
84 'license': 'gplv2+',
85 'in': ['logic'],
86 'out': ['transitioncounts'],
87 'probes': [
88 # All probes.
89 ],
90 'options': {
91 # No options so far.
92 },
93 # 'start': start,
94 # 'report': report,
922763ab 95}
6fe63193 96
887d6cfa
UH
97# Use psyco (if available) as it results in huge performance improvements.
98try:
ad2dc0de
UH
99 import psyco
100 psyco.bind(decode)
887d6cfa 101except ImportError:
ad2dc0de 102 pass
887d6cfa 103