diff options
Diffstat (limited to 'decoders/lpc/pd.py')
-rw-r--r-- | decoders/lpc/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/lpc/pd.py b/decoders/lpc/pd.py index 5e838cf..cdd1db8 100644 --- a/decoders/lpc/pd.py +++ b/decoders/lpc/pd.py @@ -315,7 +315,7 @@ class Decoder(srd.Decoder): def decode(self): while True: # TODO: Come up with more appropriate self.wait() conditions. - pins = self.wait({'skip': 1}) + pins = self.wait() # If none of the pins changed, there's nothing to do. if self.oldpins == pins: |