]> sigrok.org Git - libsigrokdecode.git/blame - decoders/spi.py
srd: UART: Simplify a code snippet.
[libsigrokdecode.git] / decoders / spi.py
CommitLineData
6eb87578
GM
1##
2## This file is part of the sigrok project.
3##
4## Copyright (C) 2011 Gareth McMullin <gareth@blacksphere.co.nz>
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; either version 2 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program; if not, write to the Free Software
18## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19##
ad2dc0de 20
67e847fd
GM
21import sigrok
22
3b24e378 23class Sample():
6eb87578
GM
24 def __init__(self, data):
25 self.data = data
26 def probe(self, probe):
27 s = ord(self.data[probe / 8]) & (1 << (probe % 8))
28 return True if s else False
3b24e378
KS
29
30def sampleiter(data, unitsize):
6eb87578
GM
31 for i in range(0, len(data), unitsize):
32 yield(Sample(data[i:i+unitsize]))
3b24e378 33
1c8ac5bf 34class Decoder(sigrok.Decoder):
67e847fd 35 id = 'spi'
2b7d0e2b 36 name = 'SPI'
6eb87578 37 desc = '...desc...'
2b7d0e2b 38 longname = 'Serial Peripheral Interface (SPI) bus'
6eb87578
GM
39 longdesc = '...longdesc...'
40 author = 'Gareth McMullin'
41 email = 'gareth@blacksphere.co.nz'
42 license = 'gplv2+'
43 inputs = ['logic']
44 outputs = ['spi']
45 # Probe names with a set of defaults
46 probes = {'sdata':0, 'sck':1}
47 options = {}
48
3643fc3f 49 def __init__(self):
f97f531c 50 self.probes = Decoder.probes.copy()
6eb87578
GM
51 self.oldsck = True
52 self.rxcount = 0
53 self.rxdata = 0
54 self.bytesreceived = 0
55
3643fc3f 56 def start(self, metadata):
e100d51e 57 self.unitsize = metadata['unitsize']
3643fc3f 58
6eb87578 59 def report(self):
e100d51e 60 return 'SPI: %d bytes received' % self.bytesreceived
6eb87578
GM
61
62 def decode(self, data):
63 # We should accept a list of samples and iterate...
e100d51e 64 for sample in sampleiter(data['data'], self.unitsize):
6eb87578 65
e100d51e 66 sck = sample.probe(self.probes['sck'])
6eb87578
GM
67 # Sample SDATA on rising SCK
68 if sck == self.oldsck:
69 continue
70 self.oldsck = sck
ad2dc0de
UH
71 if not sck:
72 continue
6eb87578
GM
73
74 # If this is first bit, save timestamp
75 if self.rxcount == 0:
e100d51e 76 self.time = data['time']
6eb87578 77 # Receive bit into our shift register
e100d51e 78 sdata = sample.probe(self.probes['sdata'])
6eb87578
GM
79 if sdata:
80 self.rxdata |= 1 << (7 - self.rxcount)
81 self.rxcount += 1
82 # Continue to receive if not a byte yet
83 if self.rxcount != 8:
84 continue
85 # Received a byte, pass up to sigrok
e100d51e
UH
86 outdata = {'time':self.time,
87 'duration':data['time'] + data['duration'] - self.time,
88 'data':self.rxdata,
89 'display':('%02X' % self.rxdata),
90 'type':'spi',
6eb87578 91 }
1c8ac5bf 92 self.put(outdata)
6eb87578
GM
93 # Reset decoder state
94 self.rxdata = 0
95 self.rxcount = 0
96 # Keep stats for summary
97 self.bytesreceived += 1
ad2dc0de 98