summaryrefslogtreecommitdiff
path: root/hid/genmap.py
diff options
context:
space:
mode:
Diffstat (limited to 'hid/genmap.py')
-rwxr-xr-xhid/genmap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/hid/genmap.py b/hid/genmap.py
index fe65d449..2e3183a8 100755
--- a/hid/genmap.py
+++ b/hid/genmap.py
@@ -26,10 +26,10 @@ def main() -> None:
with open("src/keymap.h", "w") as hid_header_file:
hid_header_file.write("#include <HID-Project.h>\n\n#include \"inline.h\"\n\n\n")
- hid_header_file.write("INLINE uint8_t keymap(uint8_t code) {\n\tswitch(code) {\n")
+ hid_header_file.write("INLINE KeyboardKeycode keymap(uint8_t code) {\n\tswitch(code) {\n")
for (code, hid_key, _) in sorted(keymap, key=operator.itemgetter(1)):
hid_header_file.write("\t\tcase %d: return %s;\n" % (code, hid_key))
- hid_header_file.write("\t\tdefault: return 0;\n\t}\n}")
+ hid_header_file.write("\t\tdefault: return 0;\n\t}\n}\n")
if __name__ == "__main__":