diff options
Diffstat (limited to 'decoders/ir_rc5')
-rw-r--r-- | decoders/ir_rc5/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/ir_rc5/pd.py b/decoders/ir_rc5/pd.py index 0b39e70..ae29f10 100644 --- a/decoders/ir_rc5/pd.py +++ b/decoders/ir_rc5/pd.py @@ -139,7 +139,7 @@ class Decoder(srd.Decoder): raise SamplerateError('Cannot decode without samplerate.') while True: - (self.ir,) = self.wait({'skip': 1}) + (self.ir,) = self.wait() # Wait for any edge (rising or falling). if self.old_ir == self.ir: |