-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathqmk_compile.py
144 lines (117 loc) · 4.02 KB
/
qmk_compile.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
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
import os
import shutil
import subprocess
import argparse
import json
class KeyboardConfig:
config_path = r"source\qmk\keyboard.json"
original_content: str
data: dict
def __init__(self):
# Load default keyboard json
with open(KeyboardConfig.config_path, "r") as file:
self.original_content = file.read()
self.data = json.loads(self.original_content)
def override(self, args):
# Bootloader
self.data["bootloader"] = args.bootloader
print(f"Bootloader is set to \"{args.bootloader}\"")
# Legacy ks-33 matrix pinout
if args.legacy:
self.data["matrix_pins"] = {
"cols": ["D2", "D3", "F4", "F5", "F6", "F7", "B1", "B4", "B5", "B3", "B2", "B6"],
"rows": ["C6", "D7", "E6", "D4", "D0", "D1"]
}
print("Using legacy matrix pinout")
# Write overrides into the json file so
# it can be copied into the qmk folder
with open(KeyboardConfig.config_path, "w") as file:
json.dump(self.data, file, indent=4)
print()
def restore(self):
with open(KeyboardConfig.config_path, "w") as file:
file.write(self.original_content)
def get_arguments():
parser = argparse.ArgumentParser()
# https://docs.qmk.fm/config_options#avr-mcu-options
parser.add_argument("-bl", "--bootloader", default = "caterina",
choices = [
"atmel-dfu",
"lufa-dfu",
"qmk-dfu",
"halfkay",
"caterina",
"bootloadhid",
"usbasploader"
]
)
parser.add_argument("-l", "--legacy", action = "store_true", default = False, help = "use legacy matrix pinout")
return parser.parse_args()
def copy_folder_to_qmk():
# Paths
qmk_source = os.path.join("source", "qmk")
qmk_dest = os.path.join(os.environ.get("USERPROFILE"), "qmk_firmware", "keyboards", "krtkus")
# Run
try:
if os.path.exists(qmk_dest):
shutil.rmtree(qmk_dest)
print(f"Removed existing folder '{qmk_dest}'.")
shutil.copytree(qmk_source, qmk_dest)
print(f"Copied '{qmk_source}' to '{qmk_dest}'.")
print()
except Exception as e:
print(f"Error copying folder: {e}")
def run_qmk_compile():
# Command
msys_exe = r"C:\QMK_MSYS\usr\bin\bash.exe"
qmk_command = "qmk compile -kb krtkus -km default"
args = [msys_exe, "--login", "-c", qmk_command]
# Environment variables
# https://docs.qmk.fm/other_vscode#msys2-setup
env = os.environ.copy()
env["MSYSTEM"] = "MINGW64"
env["CHERE_INVOKING"] = "1"
# Run
try:
process = subprocess.Popen(args, env=env, stdout=subprocess.PIPE, text=True)
# Print output
for line in process.stdout:
print(line, end="")
process.wait()
print()
except Exception as e:
print(f"Error running QMK compile: {e}")
def obtain_hex_file(args):
# Name
bootloader = args.bootloader.replace("-", "_")
legacy = "_legacy" if args.legacy else ""
hex_name = f"krtkus_{bootloader}{legacy}.hex"
# Paths
hex_source = os.path.join(os.environ.get("USERPROFILE"), "qmk_firmware", "krtkus_default.hex")
hex_dist = os.path.join("production", "firmware", hex_name)
# Run
try:
shutil.copy2(hex_source, hex_dist)
print(f"Moved '{hex_source}' to '{hex_dist}'.")
except Exception as e:
print(f"Error obtaining hex file: {e}")
def clean_up():
# Paths
qmk_dest = os.path.join(os.environ.get("USERPROFILE"), "qmk_firmware", "keyboards", "krtkus")
# Run
try:
shutil.rmtree(qmk_dest)
print(f"Cleaned up '{qmk_dest}'.")
except Exception as e:
print(f"Error cleaning up: {e}")
if __name__ == "__main__":
args = get_arguments()
# Modify config
config = KeyboardConfig()
config.override(args)
copy_folder_to_qmk()
config.restore()
# Process
run_qmk_compile()
obtain_hex_file(args)
clean_up()