-
Notifications
You must be signed in to change notification settings - Fork 7
/
PropellerLoad.py
68 lines (51 loc) · 2.38 KB
/
PropellerLoad.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
67
68
__author__ = 'Michel'
import platform
import os
import subprocess
class PropellerLoad:
def __init__(self):
self.propeller_load_executables = {
"Windows": "/propeller-tools/windows/propeller-load.exe",
"Linux": "/propeller-tools/linux/propeller-load",
"MacOS": "/propeller-tools/mac/propeller-load",
"Darwin": "/propeller-tools/mac/propeller-load"
}
self.load_actions = {
"RAM": {"compile-options": []},
"EEPROM": {"compile-options": ["-e"]}
}
if not platform.system() in self.propeller_load_executables:
#showerror("Unsupported", platform.system() + " is currently unsupported")
print("Unsupported", platform.system() + " is currently unsupported")
exit(1)
self.appdir = os.getcwd()
def get_ports(self):
if platform.system() == "Windows":
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
process = subprocess.Popen([self.appdir + self.propeller_load_executables[platform.system()], "-P"], stdout=subprocess.PIPE, startupinfo=startupinfo)
else:
process = subprocess.Popen([self.appdir + self.propeller_load_executables[platform.system()], "-P"], stdout=subprocess.PIPE)
out, err = process.communicate()
# return json.dumps(out.splitlines())
return out.splitlines()
def load(self, action, file_to_load, com_port):
executable = self.appdir + self.propeller_load_executables[platform.system()]
executing_data = [executable, "-r"]
executing_data.extend(self.load_actions[action]["compile-options"])
if com_port is not None:
executing_data.append("-p")
executing_data.append(com_port)
executing_data.append(file_to_load.name)
if platform.system() == "Windows":
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
process = subprocess.Popen(executing_data, stdout=subprocess.PIPE, startupinfo=startupinfo)
else:
process = subprocess.Popen(executing_data, stdout=subprocess.PIPE)
out, err = process.communicate()
if process.returncode == 0:
success = True
else:
success = False
return (success, out, err)