forked from forks/qmk_firmware
320822d75b
* VIA Refactor * Remove old code * review changes * review changes * Fix cannonkeys/satisfaction75/prototype:via build * Add via.h to quantum.h * Move backlight init to after backlight config load * Merge branch 'master' into via_refactor_pr * Update user's rules.mk to new way of enabling VIA * Added id_switch_matrix_state * Review changes
41 lines
973 B
C
41 lines
973 B
C
#pragma once
|
|
|
|
#include "config_common.h"
|
|
|
|
/* USB Device descriptor parameter */
|
|
#define VENDOR_ID 0x4b4b // "KK"
|
|
#define PRODUCT_ID 0x0001
|
|
#define DEVICE_VER 0x0001
|
|
#define MANUFACTURER TheRoyalSweatshirt
|
|
#define PRODUCT romac
|
|
#define DESCRIPTION A *Plaid inspired twelve-key macropad
|
|
/* key matrix size */
|
|
#define MATRIX_ROWS 4
|
|
#define MATRIX_COLS 3
|
|
|
|
/* key matrix pins */
|
|
#define MATRIX_ROW_PINS { D4, C6, D7, E6 }
|
|
#define MATRIX_COL_PINS { F7, B1, B3 }
|
|
#define UNUSED_PINS
|
|
|
|
/* COL2ROW or ROW2COL */
|
|
#define DIODE_DIRECTION COL2ROW
|
|
|
|
/* number of backlight levels */
|
|
|
|
#define BACKLIGHT_LEVELS 0
|
|
|
|
/* 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
|
|
|
|
#define RGBLED_NUM 0
|
|
#define RGBLIGHT_HUE_STEP 8
|
|
#define RGBLIGHT_SAT_STEP 8
|
|
#define RGBLIGHT_VAL_STEP 8
|