aboutsummaryrefslogtreecommitdiff
path: root/ps2_usb/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'ps2_usb/keymap.c')
-rw-r--r--ps2_usb/keymap.c9
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 @@
4#include <stdint.h> 4#include <stdint.h>
5#include <stdbool.h> 5#include <stdbool.h>
6#include <avr/pgmspace.h> 6#include <avr/pgmspace.h>
7#include "usb_keyboard.h"
8#include "usb_keycodes.h" 7#include "usb_keycodes.h"
9#include "print.h" 8#include "print.h"
10#include "debug.h" 9#include "debug.h"
11#include "util.h" 10#include "util.h"
12#include "keymap_skel.h" 11#include "keymap.h"
13 12
14 13
15#define KEYCODE(layer, row, col) (pgm_read_byte(&keymaps[(layer)][(row)][(col)])) 14#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)
181{ 180{
182 return pgm_read_byte(&fn_keycode[(biton(fn_bits))]); 181 return pgm_read_byte(&fn_keycode[(biton(fn_bits))]);
183} 182}
184
185// define a condition to enter special function mode
186bool keymap_is_special_mode(uint8_t fn_bits)
187{
188 return usb_keyboard_mods == (BIT_LSHIFT | BIT_RSHIFT) || usb_keyboard_mods == (BIT_LCTRL | BIT_RSHIFT);
189}