diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2016-07-09 11:26:15 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2016-07-29 20:48:22 +0300 |
commit | e7670f6d19639ba2a0cead228cc58ff58eef5a60 (patch) | |
tree | e09704f3bbb7d709f4752b51ac2cffcbe325b362 /keyboards/ergodox/infinity | |
parent | e0f28c2b1068d8cd218e1450dea97fde946ba87a (diff) | |
download | qmk_firmware-e7670f6d19639ba2a0cead228cc58ff58eef5a60.tar.gz qmk_firmware-e7670f6d19639ba2a0cead228cc58ff58eef5a60.zip |
Move some of the Ergodox config settings to shared
Diffstat (limited to 'keyboards/ergodox/infinity')
-rw-r--r-- | keyboards/ergodox/infinity/config.h | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/keyboards/ergodox/infinity/config.h b/keyboards/ergodox/infinity/config.h index d24ee0f056..83d7c58378 100644 --- a/keyboards/ergodox/infinity/config.h +++ b/keyboards/ergodox/infinity/config.h @@ -18,6 +18,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #ifndef CONFIG_H #define CONFIG_H +#include "../config.h" + /* USB Device descriptor parameter */ #define VENDOR_ID 0xFEED @@ -35,25 +37,18 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define MATRIX_COLS 5 #define LOCAL_MATRIX_ROWS 9 +/* number of backlight levels */ +#define BACKLIGHT_LEVELS 3 + +#define LED_BRIGHTNESS_LO 15 +#define LED_BRIGHTNESS_HI 255 + /* define if matrix has ghost */ //#define MATRIX_HAS_GHOST /* Set 0 if debouncing isn't needed */ #define DEBOUNCE 5 -/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ -//#define LOCKING_SUPPORT_ENABLE -/* Locking resynchronize hack */ -//#define LOCKING_RESYNC_ENABLE - -/* key combination for command */ -#define IS_COMMAND() ( \ - keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \ -) - -/* Keymap for Infiity prototype */ -#define INFINITY_PROTOTYPE - #define SERIAL_LINK_BAUD 562500 #define SERIAL_LINK_THREAD_PRIORITY (NORMALPRIO - 1) // The visualizer needs gfx thread priorities |