]> sigrok.org Git - libsigrokdecode.git/blob - decoders/counter/pd.py
a02876518ec21f29b1b536d9086059ec1dd79042
[libsigrokdecode.git] / decoders / counter / pd.py
1 ##
2 ## This file is part of the libsigrokdecode project.
3 ##
4 ## Copyright (C) 2018 Stefan BrĂ¼ns <stefan.bruens@rwth-aachen.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, see <http://www.gnu.org/licenses/>.
18 ##
19
20 import sigrokdecode as srd
21
22 class Decoder(srd.Decoder):
23     api_version = 3
24     id = 'counter'
25     name = 'Counter'
26     longname = 'Edge counter'
27     desc = 'Count number of edges.'
28     license = 'gplv2+'
29     inputs = ['logic']
30     outputs = []
31     channels = (
32         {'id': 'data', 'name': 'Data', 'desc': 'Data line'},
33     )
34     optional_channels = (
35         {'id': 'reset', 'name': 'Reset', 'desc': 'Reset line'},
36     )
37     annotations = (
38         ('edge_count', 'Edge count'),
39         ('word_count', 'Word count'),
40         ('word_reset', 'Word reset'),
41     )
42     annotation_rows = (
43         ('edge_counts', 'Edges', (0,)),
44         ('word_counts', 'Words', (1,)),
45         ('word_resets', 'Word resets', (2,)),
46     )
47     options = (
48         {'id': 'edge', 'desc': 'Edges to check', 'default': 'any', 'values': ('any', 'rising', 'falling')},
49         {'id': 'divider', 'desc': 'Count divider (word width)', 'default': 0},
50     )
51
52     def __init__(self):
53         self.reset()
54
55     def reset(self):
56         self.edge_count = 0
57         self.word_count = 0
58         self.have_reset = None
59
60     def metadata(self, key, value):
61         if key == srd.SRD_CONF_SAMPLERATE:
62             self.samplerate = value
63
64     def start(self):
65         self.out_ann = self.register(srd.OUTPUT_ANN)
66         self.edge = self.options['edge']
67         self.divider = self.options['divider']
68         if self.divider < 0:
69             self.divider = 0
70
71     def putc(self, cls, annlist):
72         self.put(self.samplenum, self.samplenum, self.out_ann, [cls, annlist])
73
74     def decode(self):
75         condition = [{'rising':  {0: 'r'},
76                       'falling': {0: 'f'},
77                       'any':     {0: 'e'},}[self.edge]]
78
79         if self.has_channel(1):
80             self.have_reset = True
81             condition.append({1: 'f'})
82
83         while True:
84             self.wait(condition)
85             if self.have_reset and self.matched[1]:
86                 self.edge_count = 0
87                 self.word_count = 0
88                 self.putc(2, ['Word reset', 'Reset', 'Rst', 'R'])
89                 continue
90
91             self.edge_count += 1
92
93             self.putc(0, [str(self.edge_count)])
94             if self.divider > 0 and (self.edge_count % self.divider) == 0:
95                 self.word_count += 1
96                 self.putc(1, [str(self.word_count)])