]> sigrok.org Git - libsigrokdecode.git/blob - decoders/dsi/pd.py
decoders: Various cosmetic/consistency/typo fixes.
[libsigrokdecode.git] / decoders / dsi / pd.py
1 ##
2 ## This file is part of the libsigrokdecode project.
3 ##
4 ## Copyright (C) 2015 Jeremy Swanson <jeremy@rakocontrols.com>
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, see <http://www.gnu.org/licenses/>.
18 ##
19
20 import sigrokdecode as srd
21
22 class SamplerateError(Exception):
23     pass
24
25 class Decoder(srd.Decoder):
26     api_version = 3
27     id = 'dsi'
28     name = 'DSI'
29     longname = 'Digital Serial Interface'
30     desc = 'Digital Serial Interface (DSI) lighting protocol.'
31     license = 'gplv2+'
32     inputs = ['logic']
33     outputs = ['dsi']
34     tags = ['Embedded/industrial', 'Lighting']
35     channels = (
36         {'id': 'dsi', 'name': 'DSI', 'desc': 'DSI data line'},
37     )
38     options = (
39         {'id': 'polarity', 'desc': 'Polarity', 'default': 'active-high',
40             'values': ('active-low', 'active-high')},
41     )
42     annotations = (
43         ('bit', 'Bit'),
44         ('startbit', 'Start bit'),
45         ('level', 'Dimmer level'),
46         ('raw', 'Raw data'),
47     )
48     annotation_rows = (
49         ('bits', 'Bits', (0,)),
50         ('raw', 'Raw data', (3,)),
51         ('fields', 'Fields', (1, 2)),
52     )
53
54     def __init__(self):
55         self.reset()
56
57     def reset(self):
58         self.samplerate = None
59         self.samplenum = None
60         self.edges, self.bits, self.ss_es_bits = [], [], []
61         self.state = 'IDLE'
62
63     def start(self):
64         self.out_ann = self.register(srd.OUTPUT_ANN)
65         self.old_dsi = 1 if self.options['polarity'] == 'active-low' else 0
66
67     def metadata(self, key, value):
68         if key == srd.SRD_CONF_SAMPLERATE:
69             self.samplerate = value
70             # One bit: 1666.7us (one half low, one half high).
71             # This is how many samples are in 1TE.
72             self.halfbit = int((self.samplerate * 0.0016667) / 2.0)
73
74     def putb(self, bit1, bit2, data):
75         ss, es = self.ss_es_bits[bit1][0], self.ss_es_bits[bit2][1]
76         self.put(ss, es, self.out_ann, data)
77
78     def handle_bits(self, length):
79         a, c, f, g, b = 0, 0, 0, 0, self.bits
80         # Individual raw bits.
81         for i in range(length):
82             if i == 0:
83                 ss = max(0, self.bits[0][0])
84             else:
85                 ss = self.ss_es_bits[i - 1][1]
86             es = self.bits[i][0] + (self.halfbit * 2)
87             self.ss_es_bits.append([ss, es])
88             self.putb(i, i, [0, ['%d' % self.bits[i][1]]])
89         # Bits[0:0]: Startbit
90         s = ['Startbit: %d' % b[0][1], 'ST: %d' % b[0][1], 'ST', 'S', 'S']
91         self.putb(0, 0, [1, s])
92         self.putb(0, 0, [3, s])
93         # Bits[1:8]
94         for i in range(8):
95             f |= (b[1 + i][1] << (7 - i))
96             g = f / 2.55
97         if length == 9: # BACKWARD Frame
98             s = ['Data: %02X' % f, 'Dat: %02X' % f,
99                  'Dat: %02X' % f, 'D: %02X' % f, 'D']
100             self.putb(1, 8, [3, s])
101             s = ['Level: %d%%' % g, 'Lev: %d%%' % g,
102                  'Lev: %d%%' % g, 'L: %d' % g, 'D']
103             self.putb(1, 8, [2, s])
104             return
105
106     def reset_decoder_state(self):
107         self.edges, self.bits, self.ss_es_bits = [], [], []
108         self.state = 'IDLE'
109
110     def decode(self):
111         if not self.samplerate:
112             raise SamplerateError('Cannot decode without samplerate.')
113         bit = 0
114         while True:
115             (self.dsi,) = self.wait()
116             if self.options['polarity'] == 'active-high':
117                 self.dsi ^= 1 # Invert.
118
119             # State machine.
120             if self.state == 'IDLE':
121                 # Wait for any edge (rising or falling).
122                 if self.old_dsi == self.dsi:
123                     continue
124                 # Add in the first half of the start bit.
125                 self.edges.append(self.samplenum - int(self.halfbit))
126                 self.edges.append(self.samplenum)
127                 # Start bit is 0->1.
128                 self.phase0 = self.dsi ^ 1
129                 self.state = 'PHASE1'
130                 self.old_dsi = self.dsi
131                 # Get the next sample point.
132                 self.old_dsi = self.dsi
133                 continue
134
135             if self.old_dsi != self.dsi:
136                 self.edges.append(self.samplenum)
137             elif self.samplenum == (self.edges[-1] + int(self.halfbit * 1.5)):
138                 self.edges.append(self.samplenum - int(self.halfbit * 0.5))
139             else:
140                 continue
141
142             bit = self.old_dsi
143             if self.state == 'PHASE0':
144                 self.phase0 = bit
145                 self.state = 'PHASE1'
146             elif self.state == 'PHASE1':
147                 if (bit == 1) and (self.phase0 == 1): # Stop bit.
148                     if len(self.bits) == 17 or len(self.bits) == 9:
149                         # Forward or Backward.
150                         self.handle_bits(len(self.bits))
151                     self.reset_decoder_state() # Reset upon errors.
152                     continue
153                 else:
154                     self.bits.append([self.edges[-3], bit])
155                     self.state = 'PHASE0'
156
157             self.old_dsi = self.dsi