summaryrefslogtreecommitdiffstats
path: root/keyboards/toad/config.h
diff options
context:
space:
mode:
authorMechMerlin <30334081+mechmerlin@users.noreply.github.com>2018-09-26 21:17:54 +0200
committerDrashna Jaelre <drashna@live.com>2018-09-26 21:17:54 +0200
commitdbdbbbd5c9b1458f682eec661d0a17f91dccb4dc (patch)
treeca51d68881147a2285d300b7f0d177ab9df8f5ce /keyboards/toad/config.h
parente2eee47e20481d0936a1893b561f3a95445b40fd (diff)
downloadqmk_firmware-dbdbbbd5c9b1458f682eec661d0a17f91dccb4dc.tar.gz
qmk_firmware-dbdbbbd5c9b1458f682eec661d0a17f91dccb4dc.tar.xz
Keyboard: Refactor XMMX keyboard to XMMX and Toad (#3955)
* pull out toad keyboard and get it compiling * refactor xmmx * use the correct LAYOUT macros * move LED code out to toad.c file * move LED code out to xmmx.c file * adjust for correct number of columns and pins used * remove led set user
Diffstat (limited to 'keyboards/toad/config.h')
-rw-r--r--keyboards/toad/config.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/keyboards/toad/config.h b/keyboards/toad/config.h
new file mode 100644
index 000000000..f1d32c15b
--- /dev/null
+++ b/keyboards/toad/config.h
@@ -0,0 +1,54 @@
+#ifndef CONFIG_H
+#define CONFIG_H
+
+#include "config_common.h"
+
+/* USB Device descriptor parameter */
+#define VENDOR_ID 0xFEED
+#define PRODUCT_ID 0x6776
+#define DEVICE_VER 0x0001
+#define MANUFACTURER farmakon
+#define PRODUCT "TOAD"
+#define DESCRIPTION "TOAD"
+
+/* key matrix size */
+#define MATRIX_ROWS 6
+#define MATRIX_COLS 14
+
+/* key matrix pins */
+#define MATRIX_ROW_PINS { B0, F6, F5, F4, F1, F0 }
+#define MATRIX_COL_PINS { B3, B2, B1, E6, B7, C7, C6, D4, D6, D7, B4, D0, D1, F7 }
+#define UNUSED_PINS
+
+/* COL2ROW or ROW2COL */
+#define DIODE_DIRECTION COL2ROW
+
+/* number of backlight levels */
+
+#ifdef BACKLIGHT_PIN
+#define BACKLIGHT_LEVELS 0
+#endif
+
+/* Set 0 if debouncing isn't needed */
+#define DEBOUNCING_DELAY 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)) \
+)
+
+#ifdef RGB_DI_PIN
+#define RGBLIGHT_ANIMATIONS
+#define RGBLED_NUM 0
+#define RGBLIGHT_HUE_STEP 8
+#define RGBLIGHT_SAT_STEP 8
+#define RGBLIGHT_VAL_STEP 8
+#endif
+
+#endif