aboutsummaryrefslogtreecommitdiff
path: root/keyboard/hbkb/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboard/hbkb/config.h')
-rw-r--r--keyboard/hbkb/config.h19
1 files changed, 12 insertions, 7 deletions
diff --git a/keyboard/hbkb/config.h b/keyboard/hbkb/config.h
index 57adecfa5..aa3af30c1 100644
--- a/keyboard/hbkb/config.h
+++ b/keyboard/hbkb/config.h
@@ -27,18 +27,20 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
27#define DEVICE_VER 0x0100 27#define DEVICE_VER 0x0100
28#define PRODUCT Happy Buckling Keyboard 28#define PRODUCT Happy Buckling Keyboard
29 29
30
31#define DESCRIPTION mod version of IBM Model M keyboard 30#define DESCRIPTION mod version of IBM Model M keyboard
32 31
33
34/* matrix size */ 32/* matrix size */
35#define MATRIX_ROWS 12 33#define MATRIX_ROWS 12
36#define MATRIX_COLS 8 34#define MATRIX_COLS 8
35
37/* define if matrix has ghost */ 36/* define if matrix has ghost */
38#define MATRIX_HAS_GHOST 37#define MATRIX_HAS_GHOST
38
39/* Set 0 if need no debouncing */ 39/* Set 0 if need no debouncing */
40#define DEBOUNCE 10 40#define DEBOUNCE 10
41 41
42/* legacy keymap support */
43#define USE_LEGACY_KEYMAP
42 44
43/* key combination for command */ 45/* key combination for command */
44#define IS_COMMAND() ( \ 46#define IS_COMMAND() ( \
@@ -46,10 +48,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
46 keyboard_report->mods == (MOD_BIT(KC_LALT) | MOD_BIT(KC_RALT)) \ 48 keyboard_report->mods == (MOD_BIT(KC_LALT) | MOD_BIT(KC_RALT)) \
47) 49)
48 50
49 51/* Boot Section Size in *BYTEs*
50/* mouse keys */ 52 * Teensy halfKay 512
51#ifdef MOUSEKEY_ENABLE 53 * Teensy++ halfKay 1024
52# define MOUSEKEY_DELAY_TIME 128 54 * Atmel DFU loader 4096
53#endif 55 * LUFA bootloader 4096
56 * USBaspLoader 2048
57 */
58#define BOOTLOADER_SIZE 4096
54 59
55#endif 60#endif