38 lines
936 B
C
38 lines
936 B
C
#pragma once
|
|
|
|
#include "config_common.h"
|
|
|
|
/* USB Device descriptor parameter */
|
|
#define VENDOR_ID 0x414A // AJ = Ajazz
|
|
#define PRODUCT_ID 0x6874 // (k)68(0)t
|
|
#define DEVICE_VER 0x0069 // haha funny number
|
|
#define MANUFACTURER ajazz x steven-y-e
|
|
#define PRODUCT k680t by steven-y-e
|
|
#define DESCRIPTION k680t x teensy 2.0 handwired by steven-y-e
|
|
|
|
/* key matrix size */
|
|
#define MATRIX_ROWS 5
|
|
#define MATRIX_COLS 16
|
|
|
|
#define MATRIX_ROW_PINS { B0, B1, B2, B3, B7 }
|
|
#define MATRIX_COL_PINS { F5, F6, F7, B6, B5, B4, D7, D6, D4, D5, C7, C6, D3, D2, D1, D0 }
|
|
#define UNUSED_PINS
|
|
|
|
#define DIODE_DIRECTION COL2ROW
|
|
|
|
#define SOFT_SERIAL_PIN D0
|
|
|
|
#define DEBOUNCE 5
|
|
|
|
#define LOCKING_SUPPORT_ENABLE
|
|
|
|
#define LOCKING_RESYNC_ENABLE
|
|
|
|
/* disable these deprecated features by default */
|
|
#define NO_ACTION_MACRO
|
|
#define NO_ACTION_FUNCTION
|
|
|
|
/* Bootmagic Lite key configuration */
|
|
//#define BOOTMAGIC_LITE_ROW 0
|
|
//#define BOOTMAGIC_LITE_COLUMN 0
|