]> sigrok.org Git - libsigrokdecode.git/blob - decoders/guess_bitrate/pd.py
Various PDs: Throw SamplerateError instead of Exception.
[libsigrokdecode.git] / decoders / guess_bitrate / pd.py
1 ##
2 ## This file is part of the libsigrokdecode project.
3 ##
4 ## Copyright (C) 2013 Uwe Hermann <uwe@hermann-uwe.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, write to the Free Software
18 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19 ##
20
21 import sigrokdecode as srd
22
23 class SamplerateError(Exception):
24     pass
25
26 class Decoder(srd.Decoder):
27     api_version = 2
28     id = 'guess_bitrate'
29     name = 'Guess bitrate'
30     longname = 'Guess bitrate/baudrate'
31     desc = 'Guess the bitrate/baudrate of a UART (or other) protocol.'
32     license = 'gplv2+'
33     inputs = ['logic']
34     outputs = ['guess_bitrate']
35     channels = (
36         {'id': 'data', 'name': 'Data', 'desc': 'Data line'},
37     )
38     annotations = (
39         ('bitrate', 'Bitrate / baudrate'),
40     )
41
42     def putx(self, data):
43         self.put(self.ss_edge, self.samplenum, self.out_ann, data)
44
45     def __init__(self, **kwargs):
46         self.olddata = None
47         self.ss_edge = None
48         self.first_transition = True
49         self.bitwidth = None
50
51     def start(self):
52         self.out_ann = self.register(srd.OUTPUT_ANN)
53
54     def metadata(self, key, value):
55         if key == srd.SRD_CONF_SAMPLERATE:
56             self.samplerate = value;
57
58     def decode(self, ss, es, data):
59         if not self.samplerate:
60             raise SamplerateError('Cannot decode without samplerate.')
61         for (self.samplenum, pins) in data:
62
63             data = pins[0]
64
65             # Wait for any transition on the data line.
66             if data == self.olddata:
67                 continue
68
69             # Initialize first self.olddata with the first sample value.
70             if self.olddata == None:
71                 self.olddata = data
72                 continue
73
74             # Get the smallest distance between two transitions
75             # and use that to calculate the bitrate/baudrate.
76             if self.first_transition == True:
77                 self.ss_edge = self.samplenum
78                 self.first_transition = False
79             else:
80                 b = self.samplenum - self.ss_edge
81                 if self.bitwidth == None or b < self.bitwidth:
82                     self.bitwidth = b
83                     bitrate = int(float(self.samplerate) / float(b))
84                     self.putx([0, ['%d' % bitrate]])
85                 self.ss_edge = self.samplenum
86
87             self.olddata = data
88