]> sigrok.org Git - libsigrokdecode.git/blob - decoders/guess_bitrate/pd.py
8d28444dfce6e8414584e5338ba4a86657d5d167
[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 Decoder(srd.Decoder):
24     api_version = 1
25     id = 'guess_bitrate'
26     name = 'Guess bitrate'
27     longname = 'Guess bitrate/baudrate'
28     desc = 'Guess the bitrate/baudrate of a UART (or other) protocol.'
29     license = 'gplv2+'
30     inputs = ['logic']
31     outputs = ['guess_bitrate']
32     probes = [
33         {'id': 'data', 'name': 'Data', 'desc': 'Data line'},
34     ]
35     annotations = [
36         ['bitrate', 'Bitrate / baudrate'],
37     ]
38
39     def putx(self, data):
40         self.put(self.ss_edge, self.samplenum, self.out_ann, data)
41
42     def __init__(self, **kwargs):
43         self.olddata = None
44         self.ss_edge = None
45         self.first_transition = True
46         self.bitwidth = None
47
48     def start(self):
49         # self.out_python = self.register(srd.OUTPUT_PYTHON)
50         self.out_ann = self.register(srd.OUTPUT_ANN)
51
52     def metadata(self, key, value):
53         if key == srd.SRD_CONF_SAMPLERATE:
54             self.samplerate = value;
55
56     def decode(self, ss, es, data):
57         if self.samplerate is None:
58             raise Exception("Cannot decode without samplerate.")
59         for (self.samplenum, pins) in data:
60
61             data = pins[0]
62
63             # Wait for any transition on the data line.
64             if data == self.olddata:
65                 continue
66
67             # Initialize first self.olddata with the first sample value.
68             if self.olddata == None:
69                 self.olddata = data
70                 continue
71
72             # Get the smallest distance between two transitions
73             # and use that to calculate the bitrate/baudrate.
74             if self.first_transition == True:
75                 self.ss_edge = self.samplenum
76                 self.first_transition = False
77             else:
78                 b = self.samplenum - self.ss_edge
79                 if self.bitwidth == None or b < self.bitwidth:
80                     self.bitwidth = b
81                     bitrate = int(float(self.samplerate) / float(b))
82                     self.putx([0, ['%d' % bitrate]])
83                 self.ss_edge = self.samplenum
84
85             self.olddata = data
86