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/uart | |
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/uart')
-rw-r--r-- | decoders/uart/pd.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/decoders/uart/pd.py b/decoders/uart/pd.py index ff8a516..da5e303 100644 --- a/decoders/uart/pd.py +++ b/decoders/uart/pd.py @@ -69,6 +69,9 @@ def parity_ok(parity_type, parity_bit, data, num_data_bits): else: raise Exception('Invalid parity type: %d' % parity_type) +class SamplerateError(Exception): + pass + class Decoder(srd.Decoder): api_version = 2 id = 'uart' @@ -327,8 +330,8 @@ class Decoder(srd.Decoder): self.putg([rxtx + 4, ['Stop bit', 'Stop', 'T']]) 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: # Note: Ignoring identical samples here for performance reasons |