diff options
author | Gareth McMullin <gareth@blacksphere.co.nz> | 2011-11-20 16:30:38 +1300 |
---|---|---|
committer | Gareth McMullin <gareth@blacksphere.co.nz> | 2011-11-20 16:31:48 +1300 |
commit | 74911b4c1f6d184dac878d94992d480af0564734 (patch) | |
tree | 7e2f00960a70111e1a9b31fb54087de49fa4aec3 /decoders | |
parent | 6eb875784c96db52e962f40df24035c31c5be738 (diff) | |
download | libsigrokdecode-74911b4c1f6d184dac878d94992d480af0564734.tar.gz libsigrokdecode-74911b4c1f6d184dac878d94992d480af0564734.zip |
libsigrokdecode: Allow multiple PD instances.
There is currently no way to configure options or probes, so they'll
always be the same, but it's a start.
Diffstat (limited to 'decoders')
-rw-r--r-- | decoders/spi.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/decoders/spi.py b/decoders/spi.py index 997119c..0b688c8 100644 --- a/decoders/spi.py +++ b/decoders/spi.py @@ -86,7 +86,6 @@ class Decoder(): "display":("%02X" % self.rxdata), "type":"spi", } - print outdata sigrok.put(outdata) # Reset decoder state self.rxdata = 0 |