X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoders%2Fspi.py;fp=decoders%2Fspi.py;h=662b059afc766cfafa754c805c3c73ac061f316d;hp=e6a59bf6cbdda9e49482ddc0d3667f8fea2e3d00;hb=2b9837d9fc5f9b4eca52327527e18db4bfb730ff;hpb=9a12a6e7af3d7091d8e35dd1c731402cb80a01b0 diff --git a/decoders/spi.py b/decoders/spi.py index e6a59bf..662b059 100644 --- a/decoders/spi.py +++ b/decoders/spi.py @@ -51,7 +51,7 @@ class Decoder(srd.Decoder): def report(self): return 'SPI: %d bytes received' % self.bytesreceived - def decode(self, timeoffset, duration, data): + def decode(self, ss, es, data): # HACK! At the moment the number of probes is not handled correctly. # E.g. if an input file (-i foo.sr) has more than two probes enabled. for (samplenum, (sdata, sck, x, y, z, a)) in data: @@ -65,7 +65,7 @@ class Decoder(srd.Decoder): # If this is first bit, save timestamp if self.rxcount == 0: - self.time = timeoffset # FIXME + self.time = ss # FIXME # Receive bit into our shift register if sdata: self.rxdata |= 1 << (7 - self.rxcount) @@ -74,8 +74,8 @@ class Decoder(srd.Decoder): if self.rxcount != 8: continue # Received a byte, pass up to sigrok - outdata = {'time':self.time, - 'duration':timeoffset + duration - self.time, + outdata = {'time':self.time, # FIXME + 'duration':ss + es - self.time, # FIXME 'data':self.rxdata, 'display':('%02X' % self.rxdata), 'type':'spi',