]> sigrok.org Git - libsigrokdecode.git/blame - decoders/dcf77/pd.py
instance.c: Fix a memory leak reported by scan-build.
[libsigrokdecode.git] / decoders / dcf77 / pd.py
CommitLineData
2b0915c1 1##
50bd5d25 2## This file is part of the libsigrokdecode project.
2b0915c1 3##
e623c0fb 4## Copyright (C) 2012-2016 Uwe Hermann <uwe@hermann-uwe.de>
2b0915c1
UH
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
4539e9ca 17## along with this program; if not, see <http://www.gnu.org/licenses/>.
2b0915c1
UH
18##
19
2b0915c1
UH
20import sigrokdecode as srd
21import calendar
135b790c 22from common.srdhelper import bcd2int
2b0915c1 23
21cda951
UH
24class SamplerateError(Exception):
25 pass
26
2b0915c1 27class Decoder(srd.Decoder):
e623c0fb 28 api_version = 3
2b0915c1
UH
29 id = 'dcf77'
30 name = 'DCF77'
3d3da57d 31 longname = 'DCF77 time protocol'
a465436e 32 desc = 'European longwave time signal (77.5kHz carrier signal).'
2b0915c1
UH
33 license = 'gplv2+'
34 inputs = ['logic']
35 outputs = ['dcf77']
6a15597a 36 channels = (
2b0915c1 37 {'id': 'data', 'name': 'DATA', 'desc': 'DATA line'},
da9bcbd9
BV
38 )
39 annotations = (
40 ('start-of-minute', 'Start of minute'),
41 ('special-bits', 'Special bits (civil warnings, weather forecast)'),
42 ('call-bit', 'Call bit'),
43 ('summer-time', 'Summer time announcement'),
44 ('cest', 'CEST bit'),
45 ('cet', 'CET bit'),
46 ('leap-second', 'Leap second bit'),
47 ('start-of-time', 'Start of encoded time'),
48 ('minute', 'Minute'),
49 ('minute-parity', 'Minute parity bit'),
50 ('hour', 'Hour'),
51 ('hour-parity', 'Hour parity bit'),
52 ('day', 'Day of month'),
53 ('day-of-week', 'Day of week'),
54 ('month', 'Month'),
55 ('year', 'Year'),
56 ('date-parity', 'Date parity bit'),
57 ('raw-bits', 'Raw bits'),
58 ('unknown-bits', 'Unknown bits'),
59 ('warnings', 'Human-readable warnings'),
60 )
9f6df6fe
UH
61 annotation_rows = (
62 ('bits', 'Bits', (17, 18)),
63 ('fields', 'Fields', tuple(range(0, 16 + 1))),
64 ('warnings', 'Warnings', (19,)),
65 )
2b0915c1 66
92b7b49f 67 def __init__(self):
10aeb8ea
GS
68 self.reset()
69
70 def reset(self):
f372d597 71 self.samplerate = None
2b716038 72 self.state = 'WAIT FOR RISING EDGE'
3e9b87f7 73 self.ss_bit = self.ss_bit_old = self.es_bit = self.ss_block = 0
69ada057 74 self.datebits = []
2b0915c1
UH
75 self.bitcount = 0 # Counter for the DCF77 bits (0..58)
76 self.dcf77_bitnumber_is_known = 0
77
f372d597 78 def start(self):
be465111 79 self.out_ann = self.register(srd.OUTPUT_ANN)
2b0915c1 80
f372d597
BV
81 def metadata(self, key, value):
82 if key == srd.SRD_CONF_SAMPLERATE:
83 self.samplerate = value
84
09bca511 85 def putx(self, data):
3e9b87f7 86 # Annotation for a single DCF77 bit.
aa4cf4c6 87 self.put(self.ss_bit, self.es_bit, self.out_ann, data)
09bca511 88
3e9b87f7
UH
89 def putb(self, data):
90 # Annotation for a multi-bit DCF77 field.
91 self.put(self.ss_block, self.samplenum, self.out_ann, data)
92
2b0915c1
UH
93 # TODO: Which range to use? Only the 100ms/200ms or full second?
94 def handle_dcf77_bit(self, bit):
95 c = self.bitcount
2b0915c1
UH
96
97 # Create one annotation for each DCF77 bit (containing the 0/1 value).
98 # Use 'Unknown DCF77 bit x: val' if we're not sure yet which of the
99 # 0..58 bits it is (because we haven't seen a 'new minute' marker yet).
100 # Otherwise, use 'DCF77 bit x: val'.
99f5e74a
UH
101 s = 'B' if self.dcf77_bitnumber_is_known else 'Unknown b'
102 ann = 17 if self.dcf77_bitnumber_is_known else 18
103 self.putx([ann, ['%sit %d: %d' % (s, c, bit), '%d' % bit]])
2b0915c1
UH
104
105 # If we're not sure yet which of the 0..58 DCF77 bits we have, return.
106 # We don't want to decode bogus data.
107 if not self.dcf77_bitnumber_is_known:
108 return
109
69ada057
UH
110 # Collect bits 36-58, we'll need them for a parity check later.
111 if c in range(36, 58 + 1):
112 self.datebits.append(bit)
113
2b0915c1
UH
114 # Output specific "decoded" annotations for the respective DCF77 bits.
115 if c == 0:
116 # Start of minute: DCF bit 0.
117 if bit == 0:
99f5e74a
UH
118 self.putx([0, ['Start of minute (always 0)',
119 'Start of minute', 'SoM']])
2b0915c1 120 else:
99f5e74a 121 self.putx([19, ['Start of minute != 0', 'SoM != 0']])
2b0915c1
UH
122 elif c in range(1, 14 + 1):
123 # Special bits (civil warnings, weather forecast): DCF77 bits 1-14.
124 if c == 1:
125 self.tmp = bit
3e9b87f7 126 self.ss_block = self.ss_bit
2b0915c1
UH
127 else:
128 self.tmp |= (bit << (c - 1))
129 if c == 14:
aad263bb 130 s = '{:014b}'.format(self.tmp)
99f5e74a 131 self.putb([1, ['Special bits: %s' % s, 'SB: %s' % s]])
2b0915c1
UH
132 elif c == 15:
133 s = '' if (bit == 1) else 'not '
99f5e74a 134 self.putx([2, ['Call bit: %sset' % s, 'CB: %sset' % s]])
2b0915c1
UH
135 # TODO: Previously this bit indicated use of the backup antenna.
136 elif c == 16:
137 s = '' if (bit == 1) else 'not '
99f5e74a
UH
138 x = 'yes' if (bit == 1) else 'no'
139 self.putx([3, ['Summer time announcement: %sactive' % s,
140 'Summer time: %sactive' % s,
141 'Summer time: %s' % x, 'ST: %s' % x]])
2b0915c1
UH
142 elif c == 17:
143 s = '' if (bit == 1) else 'not '
99f5e74a
UH
144 x = 'yes' if (bit == 1) else 'no'
145 self.putx([4, ['CEST: %sin effect' % s, 'CEST: %s' % x]])
2b0915c1
UH
146 elif c == 18:
147 s = '' if (bit == 1) else 'not '
99f5e74a
UH
148 x = 'yes' if (bit == 1) else 'no'
149 self.putx([5, ['CET: %sin effect' % s, 'CET: %s' % x]])
2b0915c1
UH
150 elif c == 19:
151 s = '' if (bit == 1) else 'not '
99f5e74a
UH
152 x = 'yes' if (bit == 1) else 'no'
153 self.putx([6, ['Leap second announcement: %sactive' % s,
154 'Leap second: %sactive' % s,
155 'Leap second: %s' % x, 'LS: %s' % x]])
2b0915c1
UH
156 elif c == 20:
157 # Start of encoded time: DCF bit 20.
158 if bit == 1:
99f5e74a
UH
159 self.putx([7, ['Start of encoded time (always 1)',
160 'Start of encoded time', 'SoeT']])
2b0915c1 161 else:
99f5e74a 162 self.putx([19, ['Start of encoded time != 1', 'SoeT != 1']])
2b0915c1
UH
163 elif c in range(21, 27 + 1):
164 # Minutes (0-59): DCF77 bits 21-27 (BCD format).
165 if c == 21:
166 self.tmp = bit
3e9b87f7 167 self.ss_block = self.ss_bit
2b0915c1
UH
168 else:
169 self.tmp |= (bit << (c - 21))
170 if c == 27:
99f5e74a
UH
171 m = bcd2int(self.tmp)
172 self.putb([8, ['Minutes: %d' % m, 'Min: %d' % m]])
2b0915c1
UH
173 elif c == 28:
174 # Even parity over minute bits (21-28): DCF77 bit 28.
175 self.tmp |= (bit << (c - 21))
176 parity = bin(self.tmp).count('1')
177 s = 'OK' if ((parity % 2) == 0) else 'INVALID!'
99f5e74a 178 self.putx([9, ['Minute parity: %s' % s, 'Min parity: %s' % s]])
2b0915c1
UH
179 elif c in range(29, 34 + 1):
180 # Hours (0-23): DCF77 bits 29-34 (BCD format).
181 if c == 29:
182 self.tmp = bit
3e9b87f7 183 self.ss_block = self.ss_bit
2b0915c1
UH
184 else:
185 self.tmp |= (bit << (c - 29))
186 if c == 34:
3e9b87f7 187 self.putb([10, ['Hours: %d' % bcd2int(self.tmp)]])
2b0915c1
UH
188 elif c == 35:
189 # Even parity over hour bits (29-35): DCF77 bit 35.
190 self.tmp |= (bit << (c - 29))
191 parity = bin(self.tmp).count('1')
192 s = 'OK' if ((parity % 2) == 0) else 'INVALID!'
8a18c4e7 193 self.putx([11, ['Hour parity: %s' % s]])
2b0915c1
UH
194 elif c in range(36, 41 + 1):
195 # Day of month (1-31): DCF77 bits 36-41 (BCD format).
196 if c == 36:
197 self.tmp = bit
3e9b87f7 198 self.ss_block = self.ss_bit
2b0915c1
UH
199 else:
200 self.tmp |= (bit << (c - 36))
201 if c == 41:
3e9b87f7 202 self.putb([12, ['Day: %d' % bcd2int(self.tmp)]])
2b0915c1
UH
203 elif c in range(42, 44 + 1):
204 # Day of week (1-7): DCF77 bits 42-44 (BCD format).
205 # A value of 1 means Monday, 7 means Sunday.
206 if c == 42:
207 self.tmp = bit
3e9b87f7 208 self.ss_block = self.ss_bit
2b0915c1
UH
209 else:
210 self.tmp |= (bit << (c - 42))
211 if c == 44:
212 d = bcd2int(self.tmp)
40935087
GS
213 try:
214 dn = calendar.day_name[d - 1] # day_name[0] == Monday
215 self.putb([13, ['Day of week: %d (%s)' % (d, dn),
216 'DoW: %d (%s)' % (d, dn)]])
217 except IndexError:
218 self.putb([19, ['Day of week: %d (%s)' % (d, 'invalid'),
219 'DoW: %d (%s)' % (d, 'inv')]])
2b0915c1
UH
220 elif c in range(45, 49 + 1):
221 # Month (1-12): DCF77 bits 45-49 (BCD format).
222 if c == 45:
223 self.tmp = bit
3e9b87f7 224 self.ss_block = self.ss_bit
2b0915c1
UH
225 else:
226 self.tmp |= (bit << (c - 45))
227 if c == 49:
228 m = bcd2int(self.tmp)
40935087
GS
229 try:
230 mn = calendar.month_name[m] # month_name[1] == January
231 self.putb([14, ['Month: %d (%s)' % (m, mn),
232 'Mon: %d (%s)' % (m, mn)]])
233 except IndexError:
234 self.putb([19, ['Month: %d (%s)' % (m, 'invalid'),
235 'Mon: %d (%s)' % (m, 'inv')]])
2b0915c1
UH
236 elif c in range(50, 57 + 1):
237 # Year (0-99): DCF77 bits 50-57 (BCD format).
238 if c == 50:
239 self.tmp = bit
3e9b87f7 240 self.ss_block = self.ss_bit
2b0915c1
UH
241 else:
242 self.tmp |= (bit << (c - 50))
243 if c == 57:
3e9b87f7 244 self.putb([15, ['Year: %d' % bcd2int(self.tmp)]])
2b0915c1
UH
245 elif c == 58:
246 # Even parity over date bits (36-58): DCF77 bit 58.
69ada057 247 parity = self.datebits.count(1)
2b0915c1 248 s = 'OK' if ((parity % 2) == 0) else 'INVALID!'
35b380b1 249 self.putx([16, ['Date parity: %s' % s, 'DP: %s' % s]])
69ada057 250 self.datebits = []
2b0915c1 251 else:
cb675841
GS
252 self.putx([19, ['Invalid DCF77 bit: %d' % c,
253 'Invalid bit: %d' % c, 'Inv: %d' % c]])
2b0915c1 254
e623c0fb 255 def decode(self):
21cda951
UH
256 if not self.samplerate:
257 raise SamplerateError('Cannot decode without samplerate.')
e623c0fb 258 while True:
2b716038 259 if self.state == 'WAIT FOR RISING EDGE':
2b0915c1 260 # Wait until the next rising edge occurs.
e623c0fb 261 self.wait({0: 'r'})
2b0915c1
UH
262
263 # Save the sample number where the DCF77 bit begins.
aa4cf4c6 264 self.ss_bit = self.samplenum
2b0915c1
UH
265
266 # Calculate the length (in ms) between two rising edges.
aa4cf4c6 267 len_edges = self.ss_bit - self.ss_bit_old
2b0915c1
UH
268 len_edges_ms = int((len_edges / self.samplerate) * 1000)
269
270 # The time between two rising edges is usually around 1000ms.
271 # For DCF77 bit 59, there is no rising edge at all, i.e. the
272 # time between DCF77 bit 59 and DCF77 bit 0 (of the next
273 # minute) is around 2000ms. Thus, if we see an edge with a
274 # 2000ms distance to the last one, this edge marks the
275 # beginning of a new minute (and DCF77 bit 0 of that minute).
276 if len_edges_ms in range(1600, 2400 + 1):
2b0915c1 277 self.bitcount = 0
aa4cf4c6 278 self.ss_bit_old = self.ss_bit
2b0915c1 279 self.dcf77_bitnumber_is_known = 1
2b0915c1 280
aa4cf4c6 281 self.ss_bit_old = self.ss_bit
abbc1285 282 self.state = 'GET BIT'
2b0915c1 283
abbc1285 284 elif self.state == 'GET BIT':
2b0915c1 285 # Wait until the next falling edge occurs.
e623c0fb 286 self.wait({0: 'f'})
2b0915c1 287
09bca511 288 # Save the sample number where the DCF77 bit ends.
aa4cf4c6 289 self.es_bit = self.samplenum
09bca511 290
2b0915c1 291 # Calculate the length (in ms) of the current high period.
aa4cf4c6 292 len_high = self.samplenum - self.ss_bit
2b0915c1
UH
293 len_high_ms = int((len_high / self.samplerate) * 1000)
294
295 # If the high signal was 100ms long, that encodes a 0 bit.
296 # If it was 200ms long, that encodes a 1 bit.
297 if len_high_ms in range(40, 160 + 1):
298 bit = 0
299 elif len_high_ms in range(161, 260 + 1):
300 bit = 1
301 else:
cb675841 302 bit = -1
2b0915c1 303
cb675841 304 if bit in (0, 1):
2b0915c1
UH
305 self.handle_dcf77_bit(bit)
306 self.bitcount += 1
cb675841
GS
307 else:
308 self.putx([19, ['Invalid bit timing', 'Inv timing', 'Inv']])
2b0915c1 309
2b716038 310 self.state = 'WAIT FOR RISING EDGE'