diff options
author | Gareth McMullin <gareth@blacksphere.co.nz> | 2011-11-20 18:39:50 +1300 |
---|---|---|
committer | Gareth McMullin <gareth@blacksphere.co.nz> | 2011-11-20 18:39:50 +1300 |
commit | f97f531c2d31b729afbf1c97a0d017526bf8e52a (patch) | |
tree | 4ca0ecfef74be831ff3490db67986e15e08c32bb /decoders | |
parent | 74911b4c1f6d184dac878d94992d480af0564734 (diff) | |
download | libsigrokdecode-f97f531c2d31b729afbf1c97a0d017526bf8e52a.tar.gz libsigrokdecode-f97f531c2d31b729afbf1c97a0d017526bf8e52a.zip |
libsigrokdecode: Allow frontend to configure decoder probes.
Diffstat (limited to 'decoders')
-rw-r--r-- | decoders/spi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/spi.py b/decoders/spi.py index 0b688c8..0ac8b56 100644 --- a/decoders/spi.py +++ b/decoders/spi.py @@ -47,7 +47,7 @@ class Decoder(): #print kwargs self.unitsize = unitsize - self.probes = Decoder.probes + self.probes = Decoder.probes.copy() self.oldsck = True self.rxcount = 0 self.rxdata = 0 |