diff options
author | Bert Vermeulen <bert@biot.com> | 2013-11-05 11:21:33 +0100 |
---|---|---|
committer | Bert Vermeulen <bert@biot.com> | 2013-11-07 22:47:42 +0100 |
commit | f2a5df42ea41e6c4370d4efa1a27ab942ba1ddff (patch) | |
tree | 2e62755d1bcbbdb1bd0742eec7f9bed21b28bb7a /decoders/spi | |
parent | 98e0b79b9fd2abf076054abc5f25c184b436cb87 (diff) | |
download | libsigrokdecode-f2a5df42ea41e6c4370d4efa1a27ab942ba1ddff.tar.gz libsigrokdecode-f2a5df42ea41e6c4370d4efa1a27ab942ba1ddff.zip |
Rename inter-PD output type to SRD_OUTPUT_PYTHON
This better reflects what it is: a python object generated and
processed by python code.
Diffstat (limited to 'decoders/spi')
-rw-r--r-- | decoders/spi/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/spi/pd.py b/decoders/spi/pd.py index d18af85..888cbd3 100644 --- a/decoders/spi/pd.py +++ b/decoders/spi/pd.py @@ -101,7 +101,7 @@ class Decoder(srd.Decoder): self.state = 'IDLE' def start(self): - self.out_proto = self.add(srd.OUTPUT_PROTO, 'spi') + self.out_proto = self.add(srd.OUTPUT_PYTHON, 'spi') self.out_ann = self.add(srd.OUTPUT_ANN, 'spi') def report(self): |