diff options
author | Devaev Maxim <[email protected]> | 2018-07-11 06:30:47 +0000 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2018-07-11 06:30:47 +0000 |
commit | f0c78e966ea1e1faf9206c47f254fe3f38ba1f34 (patch) | |
tree | 90defde77b08c4127aaab98d1eaace7434c26738 /hid/src/main.cpp | |
parent | 08a36a1fe0c0844df425566596f0f016eef677b8 (diff) |
fixed keymapping
Diffstat (limited to 'hid/src/main.cpp')
-rw-r--r-- | hid/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hid/src/main.cpp b/hid/src/main.cpp index 631925f0..ba26be5c 100644 --- a/hid/src/main.cpp +++ b/hid/src/main.cpp @@ -19,7 +19,7 @@ INLINE void cmdResetHid() { INLINE void cmdKeyEvent() { uint8_t state = CMD_SERIAL.read(); - uint8_t code = keymap(CMD_SERIAL.read()); + KeyboardKeycode code = keymap((uint8_t)CMD_SERIAL.read()); CMD_SERIAL.read(); // unused now if (code) { if (state) { |