From b60f9c6ac6fa9f63cba7ffb6872095a8f0788e42 Mon Sep 17 00:00:00 2001 From: tmk Date: Mon, 11 Feb 2013 13:56:05 +0900 Subject: Boot Magic key for gh60 --- keyboard/gh60/config.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'keyboard/gh60/config.h') diff --git a/keyboard/gh60/config.h b/keyboard/gh60/config.h index 6e7b1bd7a..a760d5dfb 100644 --- a/keyboard/gh60/config.h +++ b/keyboard/gh60/config.h @@ -47,4 +47,17 @@ along with this program. If not, see . keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \ ) +/* + * Boot magic keys + * call some function by pressing key when pluging cable or powering on. + */ +/* key position on matrix(ROW:COL) */ +#define KEY_FN 0x4A +#define KEY_D 0x23 +#define KEY_IS_ON(key) matrix_is_on((key)>>4, (key)&0xF) +/* kick up bootloader */ +#define IS_BOOTMAGIC_BOOTLOADER() KEY_IS_ON(KEY_FN) +/* debug on */ +#define IS_BOOTMAGIC_DEBUG() KEY_IS_ON(KEY_D) + #endif -- cgit v1.2.3-24-g4f1b