diff options
author | Devaev Maxim <[email protected]> | 2020-11-03 10:15:54 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-11-11 22:24:25 +0300 |
commit | e07cdd60f393eb17184afe4ea1730f3c5745ea6f (patch) | |
tree | 5751136b75af6dc2433c19e17b9e3739cb7a9d33 /hid/src/usb/keymap.h.mako | |
parent | a3707d047fddd5f0c923422468be29ddb345f989 (diff) |
spi firmware
Diffstat (limited to 'hid/src/usb/keymap.h.mako')
-rw-r--r-- | hid/src/usb/keymap.h.mako | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/hid/src/usb/keymap.h.mako b/hid/src/usb/keymap.h.mako index 8cd94fd9..a93d91a4 100644 --- a/hid/src/usb/keymap.h.mako +++ b/hid/src/usb/keymap.h.mako @@ -24,10 +24,8 @@ #include <HID-Project.h> -#include "../inline.h" - <%! import operator %> -INLINE KeyboardKeycode keymapUsb(uint8_t code) { +KeyboardKeycode keymapUsb(uint8_t code) { switch (code) { % for km in sorted(keymap, key=operator.attrgetter("mcu_code")): case ${km.mcu_code}: return ${km.arduino_name}; |