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
|
##
## This file is part of the libsigrokdecode project.
##
## Copyright (C) 2018 Stefan Brüns <stefan.bruens@rwth-aachen.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, see <http://www.gnu.org/licenses/>.
##
import sigrokdecode as srd
class Decoder(srd.Decoder):
api_version = 3
id = 'counter'
name = 'Counter'
longname = 'Edge counter'
desc = 'Count number of edges.'
license = 'gplv2+'
inputs = ['logic']
outputs = []
channels = (
{'id': 'data', 'name': 'Data', 'desc': 'Data line'},
)
optional_channels = (
{'id': 'reset', 'name': 'Reset', 'desc': 'Reset line'},
)
annotations = (
('edge_count', 'Edge count'),
('word_count', 'Word count'),
('word_reset', 'Word reset'),
)
annotation_rows = (
('edge_counts', 'Edges', (0,)),
('word_counts', 'Words', (1,)),
('word_resets', 'Word resets', (2,)),
)
options = (
{'id': 'edge', 'desc': 'Edges to check', 'default': 'any', 'values': ('any', 'rising', 'falling')},
{'id': 'divider', 'desc': 'Count divider (word width)', 'default': 0},
)
def __init__(self):
self.reset()
def reset(self):
self.edge_count = 0
self.word_count = 0
self.have_reset = None
def metadata(self, key, value):
if key == srd.SRD_CONF_SAMPLERATE:
self.samplerate = value
def start(self):
self.out_ann = self.register(srd.OUTPUT_ANN)
self.edge = self.options['edge']
self.divider = self.options['divider']
if self.divider < 0:
self.divider = 0
def putc(self, cls, annlist):
self.put(self.samplenum, self.samplenum, self.out_ann, [cls, annlist])
def decode(self):
condition = [{'rising': {0: 'r'},
'falling': {0: 'f'},
'any': {0: 'e'},}[self.edge]]
if self.has_channel(1):
self.have_reset = True
condition.append({1: 'f'})
while True:
self.wait(condition)
if self.have_reset and self.matched[1]:
self.edge_count = 0
self.word_count = 0
self.putc(2, ['Word reset', 'Reset', 'Rst', 'R'])
continue
self.edge_count += 1
self.putc(0, [str(self.edge_count)])
if self.divider > 0 and (self.edge_count % self.divider) == 0:
self.word_count += 1
self.putc(1, [str(self.word_count)])
|