summaryrefslogtreecommitdiff
path: root/decoders/pwm/pd.py
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2015-12-23 20:00:45 +0100
committerUwe Hermann <uwe@hermann-uwe.de>2015-12-24 02:28:55 +0100
commit2824e81140d3a8e37464f758cf67f50f2f7afca7 (patch)
tree10b54864ae16f2d9233e2d799bad08481e481792 /decoders/pwm/pd.py
parent0679f5bf9b2334deb75243abb80ef7e0d0472c18 (diff)
downloadlibsigrokdecode-2824e81140d3a8e37464f758cf67f50f2f7afca7.tar.gz
libsigrokdecode-2824e81140d3a8e37464f758cf67f50f2f7afca7.zip
Use a Python list (not tuple) for OUT_BINARY.
This is more consistent with annotation syntax and looks slightly better in most cases.
Diffstat (limited to 'decoders/pwm/pd.py')
-rw-r--r--decoders/pwm/pd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/pwm/pd.py b/decoders/pwm/pd.py
index e0203a3..7b10d97 100644
--- a/decoders/pwm/pd.py
+++ b/decoders/pwm/pd.py
@@ -132,7 +132,7 @@ class Decoder(srd.Decoder):
self.putx([0, ['%f%%' % percent]])
# Report the duty cycle in the binary output.
- self.putb((0, bytes([int(ratio * 256)])))
+ self.putb([0, bytes([int(ratio * 256)])])
# Report the period in units of time.
period_t = float(period / self.samplerate)