diff options
author | tmk <nobody@nowhere> | 2011-02-21 15:43:17 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2011-02-22 03:09:14 +0900 |
commit | fb8d23c60c757d5d9c2270cb0123a53be2049a28 (patch) | |
tree | 2f5d695f9d501468dc83f4861e7367cdf905ed3f /ps2_usb/keymap.c | |
parent | 47f5d8b545eec12ca74d8e7048bb5daa290d937e (diff) | |
download | qmk_firmware-fb8d23c60c757d5d9c2270cb0123a53be2049a28.tar.gz |
integrate V-USB support into ps2_usb
Diffstat (limited to 'ps2_usb/keymap.c')
-rw-r--r-- | ps2_usb/keymap.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/ps2_usb/keymap.c b/ps2_usb/keymap.c index 47db18bfa..253351f69 100644 --- a/ps2_usb/keymap.c +++ b/ps2_usb/keymap.c @@ -4,12 +4,11 @@ #include <stdint.h> #include <stdbool.h> #include <avr/pgmspace.h> -#include "usb_keyboard.h" #include "usb_keycodes.h" #include "print.h" #include "debug.h" #include "util.h" -#include "keymap_skel.h" +#include "keymap.h" #define KEYCODE(layer, row, col) (pgm_read_byte(&keymaps[(layer)][(row)][(col)])) @@ -181,9 +180,3 @@ uint8_t keymap_fn_keycode(uint8_t fn_bits) { return pgm_read_byte(&fn_keycode[(biton(fn_bits))]); } - -// define a condition to enter special function mode -bool keymap_is_special_mode(uint8_t fn_bits) -{ - return usb_keyboard_mods == (BIT_LSHIFT | BIT_RSHIFT) || usb_keyboard_mods == (BIT_LCTRL | BIT_RSHIFT); -} |