-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathepdconfig.patch
More file actions
164 lines (162 loc) · 4.95 KB
/
epdconfig.patch
File metadata and controls
164 lines (162 loc) · 4.95 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
--- ursula/original_epdconfig.py 2025-05-09 21:09:40.560143366 +0200
+++ ursula/epdconfig.py 2025-05-08 21:11:24.236505599 +0200
@@ -161,160 +161,7 @@
self.GPIO_PWR_PIN.close()
self.GPIO_BUSY_PIN.close()
-
-
-
-
-class JetsonNano:
- # Pin definition
- RST_PIN = 17
- DC_PIN = 25
- CS_PIN = 8
- BUSY_PIN = 24
- PWR_PIN = 18
-
- def __init__(self):
- import ctypes
- find_dirs = [
- os.path.dirname(os.path.realpath(__file__)),
- '/usr/local/lib',
- '/usr/lib',
- ]
- self.SPI = None
- for find_dir in find_dirs:
- so_filename = os.path.join(find_dir, 'sysfs_software_spi.so')
- if os.path.exists(so_filename):
- self.SPI = ctypes.cdll.LoadLibrary(so_filename)
- break
- if self.SPI is None:
- raise RuntimeError('Cannot find sysfs_software_spi.so')
-
- import Jetson.GPIO
- self.GPIO = Jetson.GPIO
-
- def digital_write(self, pin, value):
- self.GPIO.output(pin, value)
-
- def digital_read(self, pin):
- return self.GPIO.input(self.BUSY_PIN)
-
- def delay_ms(self, delaytime):
- time.sleep(delaytime / 1000.0)
-
- def spi_writebyte(self, data):
- self.SPI.SYSFS_software_spi_transfer(data[0])
-
- def spi_writebyte2(self, data):
- for i in range(len(data)):
- self.SPI.SYSFS_software_spi_transfer(data[i])
-
- def module_init(self):
- self.GPIO.setmode(self.GPIO.BCM)
- self.GPIO.setwarnings(False)
- self.GPIO.setup(self.RST_PIN, self.GPIO.OUT)
- self.GPIO.setup(self.DC_PIN, self.GPIO.OUT)
- self.GPIO.setup(self.CS_PIN, self.GPIO.OUT)
- self.GPIO.setup(self.PWR_PIN, self.GPIO.OUT)
- self.GPIO.setup(self.BUSY_PIN, self.GPIO.IN)
-
- self.GPIO.output(self.PWR_PIN, 1)
-
- self.SPI.SYSFS_software_spi_begin()
- return 0
-
- def module_exit(self):
- logger.debug("spi end")
- self.SPI.SYSFS_software_spi_end()
-
- logger.debug("close 5V, Module enters 0 power consumption ...")
- self.GPIO.output(self.RST_PIN, 0)
- self.GPIO.output(self.DC_PIN, 0)
- self.GPIO.output(self.PWR_PIN, 0)
-
- self.GPIO.cleanup([self.RST_PIN, self.DC_PIN, self.CS_PIN, self.BUSY_PIN, self.PWR_PIN])
-
-
-class SunriseX3:
- # Pin definition
- RST_PIN = 17
- DC_PIN = 25
- CS_PIN = 8
- BUSY_PIN = 24
- PWR_PIN = 18
- Flag = 0
-
- def __init__(self):
- import spidev
- import Hobot.GPIO
-
- self.GPIO = Hobot.GPIO
- self.SPI = spidev.SpiDev()
-
- def digital_write(self, pin, value):
- self.GPIO.output(pin, value)
-
- def digital_read(self, pin):
- return self.GPIO.input(pin)
-
- def delay_ms(self, delaytime):
- time.sleep(delaytime / 1000.0)
-
- def spi_writebyte(self, data):
- self.SPI.writebytes(data)
-
- def spi_writebyte2(self, data):
- # for i in range(len(data)):
- # self.SPI.writebytes([data[i]])
- self.SPI.xfer3(data)
-
- def module_init(self):
- if self.Flag == 0:
- self.Flag = 1
- self.GPIO.setmode(self.GPIO.BCM)
- self.GPIO.setwarnings(False)
- self.GPIO.setup(self.RST_PIN, self.GPIO.OUT)
- self.GPIO.setup(self.DC_PIN, self.GPIO.OUT)
- self.GPIO.setup(self.CS_PIN, self.GPIO.OUT)
- self.GPIO.setup(self.PWR_PIN, self.GPIO.OUT)
- self.GPIO.setup(self.BUSY_PIN, self.GPIO.IN)
-
- self.GPIO.output(self.PWR_PIN, 1)
-
- # SPI device, bus = 0, device = 0
- self.SPI.open(2, 0)
- self.SPI.max_speed_hz = 4000000
- self.SPI.mode = 0b00
- return 0
- else:
- return 0
-
- def module_exit(self):
- logger.debug("spi end")
- self.SPI.close()
-
- logger.debug("close 5V, Module enters 0 power consumption ...")
- self.Flag = 0
- self.GPIO.output(self.RST_PIN, 0)
- self.GPIO.output(self.DC_PIN, 0)
- self.GPIO.output(self.PWR_PIN, 0)
-
- self.GPIO.cleanup([self.RST_PIN, self.DC_PIN, self.CS_PIN, self.BUSY_PIN], self.PWR_PIN)
-
-
-if sys.version_info[0] == 2:
- process = subprocess.Popen("cat /proc/cpuinfo | grep Raspberry", shell=True, stdout=subprocess.PIPE)
-else:
- process = subprocess.Popen("cat /proc/cpuinfo | grep Raspberry", shell=True, stdout=subprocess.PIPE, text=True)
-output, _ = process.communicate()
-if sys.version_info[0] == 2:
- output = output.decode(sys.stdout.encoding)
-
-if "Raspberry" in output:
- implementation = RaspberryPi()
-elif os.path.exists('/sys/bus/platform/drivers/gpio-x3'):
- implementation = SunriseX3()
-else:
- implementation = JetsonNano()
+implementation = RaspberryPi()
for func in [x for x in dir(implementation) if not x.startswith('_')]:
setattr(sys.modules[__name__], func, getattr(implementation, func))