From: Uwe Hermann Date: Sat, 14 Jan 2012 17:02:33 +0000 (+0100) Subject: srd: SPI: Set default PD options. X-Git-Tag: libsigrokdecode-0.1.0~156 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=0db89774dee57db500f270985f73f3bb2dcdbb42 srd: SPI: Set default PD options. --- diff --git a/decoders/spi.py b/decoders/spi.py index 7e64fcf..457abb5 100644 --- a/decoders/spi.py +++ b/decoders/spi.py @@ -78,6 +78,13 @@ class Decoder(srd.Decoder): self.bytesreceived = 0 self.samplenum = -1 + # Set protocol decoder option defaults. + self.cs_active_low = Decoder.options['cs_active_low'][1] + self.clock_polarity = Decoder.options['clock_polarity'][1] + self.clock_phase = Decoder.options['clock_phase'][1] + self.bit_order = Decoder.options['bit_order'][1] + self.word_size = Decoder.options['word_size'][1] + def start(self, metadata): self.out_proto = self.add(srd.OUTPUT_PROTO, 'spi') self.out_ann = self.add(srd.OUTPUT_ANN, 'spi')