diff options
author | Devaev Maxim <[email protected]> | 2020-08-06 11:10:37 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-08-06 11:10:37 +0300 |
commit | bf510f4ff3a97913572b6b45d878e4426a665de4 (patch) | |
tree | 2164336d1833d1eca4f77c7388b8b2e6e176e3fa /hid/src/usb/keymap.h.mako | |
parent | 1a7208f6db7e9ce71aff519e850a2f2fbfb96a69 (diff) |
refactoring
Diffstat (limited to 'hid/src/usb/keymap.h.mako')
-rw-r--r-- | hid/src/usb/keymap.h.mako | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hid/src/usb/keymap.h.mako b/hid/src/usb/keymap.h.mako index 924f8283..5df3a7f5 100644 --- a/hid/src/usb/keymap.h.mako +++ b/hid/src/usb/keymap.h.mako @@ -30,7 +30,7 @@ INLINE KeyboardKeycode keymapUsb(uint8_t code) { switch (code) { % for km in sorted(keymap, key=operator.attrgetter("serial_code")): - case ${km.serial_code}: return ${km.usb_name}; + case ${km.serial_code}: return ${km.arduino_name}; % endfor default: return KEY_ERROR_UNDEFINED; } |