]> sigrok.org Git - libsigrokdecode.git/blame - decoders/timing/pd.py
timing: Convert to PD API version 3.
[libsigrokdecode.git] / decoders / timing / pd.py
CommitLineData
92adde51
BE
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
2cd9b197 23from collections import deque
92adde51
BE
24
25class SamplerateError(Exception):
26 pass
27
28def normalize_time(t):
29 if t >= 1.0:
2cd9b197 30 return '%.3f s (%.3f Hz)' % (t, (1/t))
92adde51 31 elif t >= 0.001:
2cd9b197
UH
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)
92adde51 36 elif t >= 0.000001:
2cd9b197
UH
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)
92adde51 41 elif t >= 0.000000001:
2cd9b197
UH
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)
92adde51
BE
46 else:
47 return '%f' % t
48
49class Decoder(srd.Decoder):
831e976a 50 api_version = 3
92adde51
BE
51 id = 'timing'
52 name = 'Timing'
2cd9b197 53 longname = 'Timing calculation with frequency and averaging'
92adde51
BE
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'),
2cd9b197 63 ('average', 'Average'),
92adde51
BE
64 )
65 annotation_rows = (
66 ('time', 'Time', (0,)),
2cd9b197
UH
67 ('average', 'Average', (1,)),
68 )
69 options = (
70 { 'id': 'avg_period', 'desc': 'Averaging period', 'default': 100 },
92adde51
BE
71 )
72
92b7b49f 73 def __init__(self):
92adde51
BE
74 self.samplerate = None
75 self.oldpin = None
76 self.last_samplenum = None
2cd9b197
UH
77 self.last_n = deque()
78 self.chunks = 0
92adde51
BE
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)
831e976a 86 self.initial_pins = [0]
92adde51 87
831e976a 88 def decode(self):
92adde51
BE
89 if not self.samplerate:
90 raise SamplerateError('Cannot decode without samplerate.')
831e976a
UH
91 while True:
92 pin = self.wait({0: 'e'})
92adde51 93
92adde51
BE
94 if self.oldpin is None:
95 self.oldpin = pin
963d71d5 96 self.last_samplenum = self.samplenum
92adde51
BE
97 continue
98
99 if self.oldpin != pin:
963d71d5 100 samples = self.samplenum - self.last_samplenum
92adde51 101 t = samples / self.samplerate
2cd9b197
UH
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()
92adde51 116
2cd9b197
UH
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))]])
92adde51
BE
122
123 # Store data for next round.
963d71d5 124 self.last_samplenum = self.samplenum
92adde51 125 self.oldpin = pin