forked from forks/qmk_firmware
b05c0e46c6
* Add default value for IS_COMMAND for COMMAND feature * Cleanup and consistency * Update Templates to reflect change * Fix IS_COMMAND in template * Fix IS_COMMAND define * Use consistent IS_COMMAND block in templates * Remove unnecessary `#undef IS_COMMAND` directives * Fix compile issue on orthodox * Reomve IS_COMMAND option for newer boards * Remove all existing definitions of IS_COMMAND if they use default LSHIFT and RSHIFT setting * Remove a couple of additional IS_COMMAND defines * Remove remaining redundant IS_COMMAND definitions * Remove #undef IS_COMMAND from orthodox:drashna and whitefox:konstantin * Remove multiple empty lines in modified config.h files * Update additional boards * Reomve IS_COMMAND from newer boards * Update Alice keyboard * Remove IS_COMMAND from additional boards Jan 24th edition
27 lines
661 B
C
27 lines
661 B
C
#pragma once
|
|
|
|
#include "config_common.h"
|
|
|
|
/* USB Device descriptor parameter */
|
|
#define VENDOR_ID 0x1234
|
|
#define PRODUCT_ID 0x5678
|
|
#define DEVICE_VER 0x0000
|
|
#define MANUFACTURER 8o7wer
|
|
#define PRODUCT 30wer
|
|
#define DESCRIPTION Gherkin style construction 30% staggered pcb kit
|
|
|
|
/* key matrix size */
|
|
#define MATRIX_ROWS 3
|
|
#define MATRIX_COLS 13
|
|
|
|
/* pcb default pin-out */
|
|
#define MATRIX_ROW_PINS { E6, B4, B5 }
|
|
#define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3, B2, B6, D1, D0, D4, C6, D7 }
|
|
#define UNUSED_PINS
|
|
|
|
/* COL2ROW or ROW2COL */
|
|
#define DIODE_DIRECTION COL2ROW
|
|
|
|
/* prevent stuck modifiers */
|
|
#define PREVENT_STUCK_MODIFIERS
|