From 2b9837d9fc5f9b4eca52327527e18db4bfb730ff Mon Sep 17 00:00:00 2001 From: Uwe Hermann <uwe@hermann-uwe.de> Date: Thu, 12 Jan 2012 22:49:41 +0100 Subject: srd: decoders: Rename obsolete timeoffset/duration. --- decoders/spi.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'decoders/spi.py') 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', -- cgit v1.2.3-70-g09d2