summaryrefslogtreecommitdiff
path: root/decoders/dmx512/pd.py
diff options
context:
space:
mode:
Diffstat (limited to 'decoders/dmx512/pd.py')
-rw-r--r--decoders/dmx512/pd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/dmx512/pd.py b/decoders/dmx512/pd.py
index 4da7076..f250a3b 100644
--- a/decoders/dmx512/pd.py
+++ b/decoders/dmx512/pd.py
@@ -101,7 +101,7 @@ class Decoder(srd.Decoder):
# Mark and read a single transmitted byte
# (start bit, 8 data bits, 2 stop bits).
elif self.state == 'READ BYTE':
- (dmx,) = self.wait({'skip': 1})
+ (dmx,) = self.wait()
self.next_sample = self.run_start + (self.bit + 1) * self.skip_per_bit
self.aggreg += dmx
if self.samplenum != self.next_sample: