1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
##
## This file is part of the sigrok project.
##
## Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
##
import sigrok
class Sample():
def __init__(self, data):
self.data = data
def probe(self, probe):
s = self.data[int(probe / 8)] & (1 << (probe % 8))
return True if s else False
def sampleiter(data, unitsize):
for i in range(0, len(data), unitsize):
yield(Sample(data[i:i+unitsize]))
class Decoder(sigrok.Decoder):
id = 'transitioncounter'
name = 'Transition counter'
longname = '...'
desc = 'Counts rising/falling edges in the signal.'
longdesc = '...'
author = 'Uwe Hermann'
email = 'uwe@hermann-uwe.de'
license = 'gplv2+'
inputs = ['logic']
outputs = ['transitioncounts']
probes = {}
options = {}
def __init__(self, **kwargs):
self.probes = Decoder.probes.copy()
self.output_protocol = None
self.output_annotation = None
# TODO: Don't hardcode the number of channels.
self.channels = 8
self.lastsample = None
self.oldbit = [0] * self.channels
self.transitions = [0] * self.channels
self.rising = [0] * self.channels
self.falling = [0] * self.channels
def start(self, metadata):
self.unitsize = metadata['unitsize']
# self.output_protocol = self.output_new(2)
self.output_annotation = self.output_new(1)
def report(self):
pass
def decode(self, timeoffset, duration, data):
"""Counts the low->high and high->low transitions in the specified
channel(s) of the signal."""
# We should accept a list of samples and iterate...
for sample in sampleiter(data, self.unitsize):
# TODO: Eliminate the need for ord().
s = ord(sample.data)
# Optimization: Skip identical samples (no transitions).
if self.lastsample == s:
continue
# Upon the first sample, store the initial values.
if self.lastsample == None:
self.lastsample = s
for i in range(self.channels):
self.oldbit[i] = (self.lastsample & (1 << i)) >> i
# Iterate over all channels/probes in this sample.
# Count rising and falling edges for each channel.
for i in range(self.channels):
curbit = (s & (1 << i)) >> i
# Optimization: Skip identical bits (no transitions).
if self.oldbit[i] == curbit:
continue
elif (self.oldbit[i] == 0 and curbit == 1):
self.rising[i] += 1
elif (self.oldbit[i] == 1 and curbit == 0):
self.falling[i] += 1
self.oldbit[i] = curbit
# Save the current sample as 'lastsample' for the next round.
self.lastsample = s
# Total number of transitions = rising + falling edges.
for i in range(self.channels):
self.transitions[i] = self.rising[i] + self.falling[i]
# TODO: Which output format?
# TODO: How to only output something after the last chunk of data?
outdata = []
for i in range(self.channels):
outdata += [[self.transitions[i], self.rising[i], self.falling[i]]]
if outdata != []:
# self.put(self.output_protocol, 0, 0, out_proto)
self.put(self.output_annotation, 0, 0, outdata)
|