From 4ae979f6ef8dbf9e1d1f35be15322ad6d02e2958 Mon Sep 17 00:00:00 2001 From: tmk Date: Sat, 6 Oct 2012 02:23:12 +0900 Subject: Initial version of new code for layer switch is added. --- keyboard/hhkb/config.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'keyboard/hhkb/config.h') diff --git a/keyboard/hhkb/config.h b/keyboard/hhkb/config.h index bf946ac01e..17a4494065 100644 --- a/keyboard/hhkb/config.h +++ b/keyboard/hhkb/config.h @@ -35,8 +35,6 @@ along with this program. If not, see . /* matrix size */ #define MATRIX_ROWS 8 #define MATRIX_COLS 8 -/* define if matrix has ghost */ -//#define MATRIX_HAS_GHOST /* key combination for command */ -- cgit v1.2.3 From 373ab0e7192811944786c095facb80938c33f1d5 Mon Sep 17 00:00:00 2001 From: tmk Date: Tue, 9 Oct 2012 14:36:13 +0900 Subject: Add keycode.h and remove usb_keycodes.h. --- keyboard/hhkb/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'keyboard/hhkb/config.h') diff --git a/keyboard/hhkb/config.h b/keyboard/hhkb/config.h index 17a4494065..e10a7ab37f 100644 --- a/keyboard/hhkb/config.h +++ b/keyboard/hhkb/config.h @@ -38,7 +38,7 @@ along with this program. If not, see . /* key combination for command */ -#define IS_COMMAND() (keyboard_report->mods == (MOD_BIT(KB_LSHIFT) | MOD_BIT(KB_RSHIFT))) +#define IS_COMMAND() (keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT))) /* mouse keys */ #ifdef MOUSEKEY_ENABLE -- cgit v1.2.3 From 5b00cf3f024a09d834d125374d93cacc269f84ba Mon Sep 17 00:00:00 2001 From: tmk Date: Wed, 10 Oct 2012 11:06:47 +0900 Subject: Fix build option MOUSEKEY_ENABLE. --- keyboard/hhkb/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'keyboard/hhkb/config.h') diff --git a/keyboard/hhkb/config.h b/keyboard/hhkb/config.h index e10a7ab37f..cca75f2434 100644 --- a/keyboard/hhkb/config.h +++ b/keyboard/hhkb/config.h @@ -42,7 +42,7 @@ along with this program. If not, see . /* mouse keys */ #ifdef MOUSEKEY_ENABLE -# define MOUSEKEY_DELAY_TIME 192 +# define MOUSEKEY_DELAY_TIME 100 #endif -- cgit v1.2.3