diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2014-07-08 21:32:32 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2014-07-09 17:58:37 +0200 |
commit | 21cda9512f29947617da45822ab524b1f76f56c1 (patch) | |
tree | 1419531d60662eb87bacb9ce53e05374314c6ded /decoders/dcf77 | |
parent | e28f7aee3b96afeb543e0c3c29e3950ddd61a490 (diff) | |
download | libsigrokdecode-21cda9512f29947617da45822ab524b1f76f56c1.tar.gz libsigrokdecode-21cda9512f29947617da45822ab524b1f76f56c1.zip |
Various PDs: Throw SamplerateError instead of Exception.
Also, use the "if not self.samplerate" form, which catches both the case
where self.samplerate is None, as well as the case where it is 0.
Diffstat (limited to 'decoders/dcf77')
-rw-r--r-- | decoders/dcf77/pd.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/decoders/dcf77/pd.py b/decoders/dcf77/pd.py index 3f0ff50..14d8637 100644 --- a/decoders/dcf77/pd.py +++ b/decoders/dcf77/pd.py @@ -25,6 +25,9 @@ import calendar def bcd2int(b): return (b & 0x0f) + ((b >> 4) * 10) +class SamplerateError(Exception): + pass + class Decoder(srd.Decoder): api_version = 2 id = 'dcf77' @@ -245,8 +248,8 @@ class Decoder(srd.Decoder): raise Exception('Invalid DCF77 bit: %d' % c) def decode(self, ss, es, data): - if self.samplerate is None: - raise Exception("Cannot decode without samplerate.") + if not self.samplerate: + raise SamplerateError('Cannot decode without samplerate.') for (self.samplenum, pins) in data: # Ignore identical samples early on (for performance reasons). |