]> sigrok.org Git - libsigrokdecode.git/blame_incremental - decoders/timing/pd.py
timing: Convert to PD API version 3.
[libsigrokdecode.git] / decoders / timing / pd.py
... / ...
CommitLineData
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, write to the Free Software
19## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20##
21
22import sigrokdecode as srd
23from collections import deque
24
25class SamplerateError(Exception):
26 pass
27
28def normalize_time(t):
29 if t >= 1.0:
30 return '%.3f s (%.3f Hz)' % (t, (1/t))
31 elif t >= 0.001:
32 if 1/t/1000 < 1:
33 return '%.3f ms (%.3f Hz)' % (t * 1000.0, (1/t))
34 else:
35 return '%.3f ms (%.3f kHz)' % (t * 1000.0, (1/t)/1000)
36 elif t >= 0.000001:
37 if 1/t/1000/1000 < 1:
38 return '%.3f μs (%.3f kHz)' % (t * 1000.0 * 1000.0, (1/t)/1000)
39 else:
40 return '%.3f μs (%.3f MHz)' % (t * 1000.0 * 1000.0, (1/t)/1000/1000)
41 elif t >= 0.000000001:
42 if 1/t/1000/1000/1000:
43 return '%.3f ns (%.3f MHz)' % (t * 1000.0 * 1000.0 * 1000.0, (1/t)/1000/1000)
44 else:
45 return '%.3f ns (%.3f GHz)' % (t * 1000.0 * 1000.0 * 1000.0, (1/t)/1000/1000/1000)
46 else:
47 return '%f' % t
48
49class Decoder(srd.Decoder):
50 api_version = 3
51 id = 'timing'
52 name = 'Timing'
53 longname = 'Timing calculation with frequency and averaging'
54 desc = 'Calculate time between edges.'
55 license = 'gplv2+'
56 inputs = ['logic']
57 outputs = ['timing']
58 channels = (
59 {'id': 'data', 'name': 'Data', 'desc': 'Data line'},
60 )
61 annotations = (
62 ('time', 'Time'),
63 ('average', 'Average'),
64 )
65 annotation_rows = (
66 ('time', 'Time', (0,)),
67 ('average', 'Average', (1,)),
68 )
69 options = (
70 { 'id': 'avg_period', 'desc': 'Averaging period', 'default': 100 },
71 )
72
73 def __init__(self):
74 self.samplerate = None
75 self.oldpin = None
76 self.last_samplenum = None
77 self.last_n = deque()
78 self.chunks = 0
79
80 def metadata(self, key, value):
81 if key == srd.SRD_CONF_SAMPLERATE:
82 self.samplerate = value
83
84 def start(self):
85 self.out_ann = self.register(srd.OUTPUT_ANN)
86 self.initial_pins = [0]
87
88 def decode(self):
89 if not self.samplerate:
90 raise SamplerateError('Cannot decode without samplerate.')
91 while True:
92 pin = self.wait({0: 'e'})
93
94 if self.oldpin is None:
95 self.oldpin = pin
96 self.last_samplenum = self.samplenum
97 continue
98
99 if self.oldpin != pin:
100 samples = self.samplenum - self.last_samplenum
101 t = samples / self.samplerate
102 self.chunks += 1
103
104 # Don't insert the first chunk into the averaging as it is
105 # not complete probably.
106 if self.last_samplenum is None or self.chunks < 2:
107 # Report the timing normalized.
108 self.put(self.last_samplenum, self.samplenum, self.out_ann,
109 [0, [normalize_time(t)]])
110 else:
111 if t > 0:
112 self.last_n.append(t)
113
114 if len(self.last_n) > self.options['avg_period']:
115 self.last_n.popleft()
116
117 # Report the timing normalized.
118 self.put(self.last_samplenum, self.samplenum, self.out_ann,
119 [0, [normalize_time(t)]])
120 self.put(self.last_samplenum, self.samplenum, self.out_ann,
121 [1, [normalize_time(sum(self.last_n) / len(self.last_n))]])
122
123 # Store data for next round.
124 self.last_samplenum = self.samplenum
125 self.oldpin = pin