forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h
41 lines (31 loc) · 1.02 KB
/
config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#pragma once
#include "config_common.h"
/* USB Device descriptor parameter */
#define VENDOR_ID 0xFEED
#define PRODUCT_ID 0x3060
#define DEVICE_VER 0x0001
#define MANUFACTURER jamiehs
#define PRODUCT Dactyl Manuform
#define DESCRIPTION Custom Bluetooth Dactyl Manuform
/* key matrix size */
#define MATRIX_ROWS 8
#define MATRIX_COLS 8
/* key matrix pins */
#define MATRIX_ROW_PINS { F7, F6, F5, F4, F1, F0, D2, D3 }
#define MATRIX_COL_PINS { D1, D0, C6, D7, B5, B6, B7, D6 }
#define UNUSED_PINS
#define CATERINA_BOOTLOADER
/* COL2ROW or ROW2COL */
#define DIODE_DIRECTION COL2ROW
#define RGB_DI_PIN C7
#define RGBLED_NUM 6
/* 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)) \
)