diff options
author | Maxim Devaev <[email protected]> | 2023-08-14 14:42:54 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2023-08-14 14:42:54 +0300 |
commit | f9ab76b247cdc85765a321116c1afd918920c6b0 (patch) | |
tree | a09dddd86e59617c65abf3d508662aee1ada2e99 /hid/pico/src/ph_usb_keymap.h | |
parent | 69163ccfb155f318be6c3a715dbc7efe57e535e3 (diff) |
pico hid refactoring
Diffstat (limited to 'hid/pico/src/ph_usb_keymap.h')
-rw-r--r-- | hid/pico/src/ph_usb_keymap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hid/pico/src/ph_usb_keymap.h b/hid/pico/src/ph_usb_keymap.h index e33bbd08..951949ae 100644 --- a/hid/pico/src/ph_usb_keymap.h +++ b/hid/pico/src/ph_usb_keymap.h @@ -25,7 +25,7 @@ #include "ph_types.h" -u8 ph_usb_keymap(u8 key) { +inline u8 ph_usb_keymap(u8 key) { switch (key) { case 1: return 4; // KeyA case 2: return 5; // KeyB |