diff options
Diffstat (limited to 'decoders/dali')
-rw-r--r-- | decoders/dali/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/dali/pd.py b/decoders/dali/pd.py index bdb3fe6..904adc7 100644 --- a/decoders/dali/pd.py +++ b/decoders/dali/pd.py @@ -202,7 +202,7 @@ class Decoder(srd.Decoder): bit = 0 while True: # TODO: Come up with more appropriate self.wait() conditions. - (dali,) = self.wait({'skip': 1}) + (dali,) = self.wait() if self.options['polarity'] == 'active-high': dali ^= 1 # Invert. |