]> sigrok.org Git - libsigrokdecode.git/blob - decoders/timing/pd.py
ab963bb11d33341ff564073f07c62c865f66c574
[libsigrokdecode.git] / decoders / timing / pd.py
1 ##
2 ## This file is part of the libsigrokdecode project.
3 ##
4 ## Copyright (C) 2014 Torsten Duwe <duwe@suse.de>
5 ## Copyright (C) 2014 Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
6 ##
7 ## This program is free software; you can redistribute it and/or modify
8 ## it under the terms of the GNU General Public License as published by
9 ## the Free Software Foundation; either version 2 of the License, or
10 ## (at your option) any later version.
11 ##
12 ## This program is distributed in the hope that it will be useful,
13 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 ## GNU General Public License for more details.
16 ##
17 ## You should have received a copy of the GNU General Public License
18 ## along with this program; if not, see <http://www.gnu.org/licenses/>.
19 ##
20
21 import sigrokdecode as srd
22 from collections import deque
23
24 class SamplerateError(Exception):
25     pass
26
27 def normalize_time(t):
28     if abs(t) >= 1.0:
29         return '%.3f s  (%.3f Hz)' % (t, (1/t))
30     elif abs(t) >= 0.001:
31         if 1/t/1000 < 1:
32             return '%.3f ms (%.3f Hz)' % (t * 1000.0, (1/t))
33         else:
34             return '%.3f ms (%.3f kHz)' % (t * 1000.0, (1/t)/1000)
35     elif abs(t) >= 0.000001:
36         if 1/t/1000/1000 < 1:
37             return '%.3f μs (%.3f kHz)' % (t * 1000.0 * 1000.0, (1/t)/1000)
38         else:
39             return '%.3f μs (%.3f MHz)' % (t * 1000.0 * 1000.0, (1/t)/1000/1000)
40     elif abs(t) >= 0.000000001:
41         if 1/t/1000/1000/1000:
42             return '%.3f ns (%.3f MHz)' % (t * 1000.0 * 1000.0 * 1000.0, (1/t)/1000/1000)
43         else:
44             return '%.3f ns (%.3f GHz)' % (t * 1000.0 * 1000.0 * 1000.0, (1/t)/1000/1000/1000)
45     else:
46         return '%f' % t
47
48 class Decoder(srd.Decoder):
49     api_version = 3
50     id = 'timing'
51     name = 'Timing'
52     longname = 'Timing calculation with frequency and averaging'
53     desc = 'Calculate time between edges.'
54     license = 'gplv2+'
55     inputs = ['logic']
56     outputs = ['timing']
57     channels = (
58         {'id': 'data', 'name': 'Data', 'desc': 'Data line'},
59     )
60     annotations = (
61         ('time', 'Time'),
62         ('average', 'Average'),
63         ('delta', 'Delta'),
64     )
65     annotation_rows = (
66         ('time', 'Time', (0,)),
67         ('average', 'Average', (1,)),
68         ('delta', 'Delta', (2,)),
69     )
70     options = (
71         { 'id': 'avg_period', 'desc': 'Averaging period', 'default': 100 },
72         { 'id': 'edge', 'desc': 'Edges to check', 'default': 'any', 'values': ('any', 'rising', 'falling') },
73         { 'id': 'delta', 'desc': 'Show delta from last', 'default': 'no', 'values': ('yes', 'no') },
74     )
75
76     def __init__(self):
77         self.samplerate = None
78         self.last_samplenum = None
79         self.last_n = deque()
80         self.chunks = 0
81         self.level_changed = False
82         self.last_t = None
83
84     def metadata(self, key, value):
85         if key == srd.SRD_CONF_SAMPLERATE:
86             self.samplerate = value
87
88     def start(self):
89         self.out_ann = self.register(srd.OUTPUT_ANN)
90         self.edge = self.options['edge']
91
92     def decode(self):
93         if not self.samplerate:
94             raise SamplerateError('Cannot decode without samplerate.')
95         while True:
96             if self.edge == 'rising':
97                 pin = self.wait({0: 'r'})
98             elif self.edge == 'falling':
99                 pin = self.wait({0: 'f'})
100             else:
101                 pin = self.wait({0: 'e'})
102
103             if not self.last_samplenum:
104                 self.last_samplenum = self.samplenum
105                 continue
106             samples = self.samplenum - self.last_samplenum
107             t = samples / self.samplerate
108
109             if t > 0:
110                 self.last_n.append(t)
111             if len(self.last_n) > self.options['avg_period']:
112                 self.last_n.popleft()
113
114             self.put(self.last_samplenum, self.samplenum, self.out_ann,
115                      [0, [normalize_time(t)]])
116             if self.options['avg_period'] > 0:
117                 self.put(self.last_samplenum, self.samplenum, self.out_ann,
118                          [1, [normalize_time(sum(self.last_n) / len(self.last_n))]])
119             if self.last_t and self.options['delta'] == 'yes':
120                 self.put(self.last_samplenum, self.samplenum, self.out_ann,
121                          [2, [normalize_time(t - self.last_t)]])
122
123             self.last_t = t
124             self.last_samplenum = self.samplenum