diff options
Diffstat (limited to 'decoders')
-rw-r--r-- | decoders/pwm/pd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/decoders/pwm/pd.py b/decoders/pwm/pd.py index 0cd0a54..444b417 100644 --- a/decoders/pwm/pd.py +++ b/decoders/pwm/pd.py @@ -101,9 +101,9 @@ class Decoder(srd.Decoder): # Get the next two edges. Setup some variables that get # referenced in the calculation and in put() routines. start_samplenum = self.samplenum - pins = self.wait({0: 'e'}) + self.wait({0: 'e'}) end_samplenum = self.samplenum - pins = self.wait({0: 'e'}) + self.wait({0: 'e'}) self.ss_block = start_samplenum self.es_block = self.samplenum |