diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2014-07-08 21:21:03 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2014-07-09 17:50:05 +0200 |
commit | e28f7aee3b96afeb543e0c3c29e3950ddd61a490 (patch) | |
tree | 75b295dd005c22f21dded6815bf9e31a514277a1 /decoders/onewire_network/pd.py | |
parent | 0e501c70cf26f208d7e523b7fe737d0e8d565109 (diff) | |
download | libsigrokdecode-e28f7aee3b96afeb543e0c3c29e3950ddd61a490.tar.gz libsigrokdecode-e28f7aee3b96afeb543e0c3c29e3950ddd61a490.zip |
All PDs: Drop unneeded exceptions.
In all current PDs it is not necessary to raise an exception upon
invalid states (of the PD's state machine), since we can guarantee that
no such invalid state can ever be reached in these PDs.
Diffstat (limited to 'decoders/onewire_network/pd.py')
-rw-r--r-- | decoders/onewire_network/pd.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/decoders/onewire_network/pd.py b/decoders/onewire_network/pd.py index 23402a6..5c836c2 100644 --- a/decoders/onewire_network/pd.py +++ b/decoders/onewire_network/pd.py @@ -126,8 +126,6 @@ class Decoder(srd.Decoder): if self.onewire_collect(8, val, ss, es) == 0: return self.putx([0, ['ROM error data: 0x%02x' % self.data]]) - else: - raise Exception('Invalid state: %s' % self.state) # Data collector. def onewire_collect(self, length, val, ss, es): |