43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include "config_common.h"
 | 
						|
 | 
						|
/* USB Device descriptor parameter */
 | 
						|
#define VENDOR_ID 0xFEED
 | 
						|
#define PRODUCT_ID 0x0A0C
 | 
						|
#define DEVICE_VER 0x0068
 | 
						|
#define MANUFACTURER 68Keys.io
 | 
						|
#define PRODUCT The 68Keys.io Keyboard
 | 
						|
#define DESCRIPTION A 68 keys mechanical keyboard
 | 
						|
 | 
						|
/* key matrix size */
 | 
						|
#define MATRIX_ROWS 8
 | 
						|
#define MATRIX_COLS 9
 | 
						|
 | 
						|
#define MATRIX_ROW_PINS                \
 | 
						|
    {                                  \
 | 
						|
        B6, B2, B3, B1, F7, F6, F5, F4 \
 | 
						|
    }
 | 
						|
#define MATRIX_COL_PINS                    \
 | 
						|
    {                                      \
 | 
						|
        D3, D2, D1, D0, D4, C6, D7, E6, B4 \
 | 
						|
    }
 | 
						|
#define UNUSED_PINS
 | 
						|
 | 
						|
#define DIODE_DIRECTION COL2ROW
 | 
						|
 | 
						|
#define BACKLIGHT_PIN B5
 | 
						|
#define BACKLIGHT_BREATHING
 | 
						|
#define BACKLIGHT_LEVELS 3
 | 
						|
 | 
						|
#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 magic key command */
 | 
						|
#define IS_COMMAND() ( \
 | 
						|
    keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)))
 |