summaryrefslogtreecommitdiff
path: root/hid/src/usb/keymap.h.mako
diff options
context:
space:
mode:
Diffstat (limited to 'hid/src/usb/keymap.h.mako')
-rw-r--r--hid/src/usb/keymap.h.mako4
1 files changed, 2 insertions, 2 deletions
diff --git a/hid/src/usb/keymap.h.mako b/hid/src/usb/keymap.h.mako
index 5df3a7f5..8cd94fd9 100644
--- a/hid/src/usb/keymap.h.mako
+++ b/hid/src/usb/keymap.h.mako
@@ -29,8 +29,8 @@
<%! import operator %>
INLINE KeyboardKeycode keymapUsb(uint8_t code) {
switch (code) {
-% for km in sorted(keymap, key=operator.attrgetter("serial_code")):
- case ${km.serial_code}: return ${km.arduino_name};
+% for km in sorted(keymap, key=operator.attrgetter("mcu_code")):
+ case ${km.mcu_code}: return ${km.arduino_name};
% endfor
default: return KEY_ERROR_UNDEFINED;
}