-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathSPI.py
68 lines (52 loc) · 1.63 KB
/
SPI.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
__author__ = 'beau'
import pyb
class SPI():
def __init__(self,CS_pin='X10',SCK_pin='Y6',MISO_pin='Y7',MOSI_pin='Y8',delay=10):
self.CS = pyb.Pin(CS_pin, pyb.Pin.OUT_PP)
self.CS.high()
self.MISO = pyb.Pin(MISO_pin,pyb.Pin.IN)
self.MOSI = pyb.Pin(MOSI_pin,pyb.Pin.OUT_PP)
self.SCK = pyb.Pin(SCK_pin, pyb.Pin.OUT_PP)
self.delay = delay
def write(self,data):
self.CS.low()
pyb.udelay(self.delay)
self._write(data)
self.CS.high()
def read(self,read_addr,nr_bytes):
buf = bytearray(1)
buf[0]=read_addr
self.CS.low()
pyb.udelay(self.delay)
self._write(buf)
result = self._read(nr_bytes)
self.CS.high()
return result
def _read(self,nr_bytes):
buf = bytearray(nr_bytes)
for b in range(nr_bytes):
byte = 0
for i in range(8):
self.SCK.high()
pyb.udelay(self.delay)
read = self.MISO.value()
read = (read << 8 - i)
byte += read
self.SCK.low()
pyb.udelay(self.delay)
buf[b]=byte
return buf
def _write(self,data):
msb = 0b10000000
for byte in data:
bits = [(byte<<i&msb)/128 for i in range(8)]
for b in bits:
if b:
self.MOSI.high()
else:
self.MOSI.low()
self.SCK.high()
pyb.udelay(self.delay)
self.SCK.low()
pyb.udelay(self.delay)
self.MOSI.low()