config.h (896B)
1 #pragma once 2 3 4 /* key matrix size */ 5 #define MATRIX_ROWS 6 6 #define MATRIX_COLS 14 7 8 #define MOUSEKEY_INTERVAL 20 9 #define MOUSEKEY_DELAY 0 10 #define MOUSEKEY_TIME_TO_MAX 60 11 #define MOUSEKEY_MAX_SPEED 7 12 #define MOUSEKEY_WHEEL_DELAY 0 13 14 /* key combination for command */ 15 #ifndef IS_COMMAND 16 #define IS_COMMAND() ( \ 17 get_mods() == MOD_MASK_CTRL || \ 18 get_mods() == MOD_MASK_SHIFT \ 19 ) 20 #endif 21 22 #define LED_BRIGHTNESS_LO 15 23 #define LED_BRIGHTNESS_HI 255 24 25 /* fix space cadet rollover issue */ 26 #define DISABLE_SPACE_CADET_ROLLOVER 27 28 /* 29 * Feature disable options 30 * These options are also useful to firmware size reduction. 31 */ 32 33 /* disable debug print */ 34 // #define NO_DEBUG 35 36 /* disable print */ 37 // #define NO_PRINT 38 39 /* disable action features */ 40 //#define NO_ACTION_LAYER 41 //#define NO_ACTION_TAPPING 42 //#define NO_ACTION_ONESHOT 43 44 //#define DEBUG_MATRIX_SCAN_RATE