mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-11-03 23:02:34 +01:00 
			
		
		
		
	* 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
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include "config_common.h"
 | 
						|
 | 
						|
/* USB Device descriptor parameter */
 | 
						|
#define VENDOR_ID       0xFEED
 | 
						|
#define PRODUCT_ID      0x6060
 | 
						|
#define DEVICE_VER      0x0001
 | 
						|
#define MANUFACTURER    Fengz
 | 
						|
#define PRODUCT         Tetris
 | 
						|
#define DESCRIPTION     Planck mit
 | 
						|
 | 
						|
#define QMK_ESC_OUTPUT B0
 | 
						|
#define QMK_ESC_INPUT D7
 | 
						|
#define QMK_LED B7
 | 
						|
#define QMK_SPEAKER B5
 | 
						|
 | 
						|
/* key matrix size */
 | 
						|
#define MATRIX_ROWS 4
 | 
						|
#define MATRIX_COLS 12
 | 
						|
 | 
						|
/* key matrix pins */
 | 
						|
#define MATRIX_ROW_PINS { B3, B2, B1, B0 }
 | 
						|
#define MATRIX_COL_PINS { D7, B4, B6, C6, C7, F6, F7, D4, D2, D3, D5, D6 }
 | 
						|
#define UNUSED_PINS
 | 
						|
 | 
						|
/* COL2ROW or ROW2COL */
 | 
						|
#define DIODE_DIRECTION COL2ROW
 | 
						|
 | 
						|
/* 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
 | 
						|
 | 
						|
#define NO_ACTION_MACRO
 | 
						|
#define NO_ACTION_FUNCTION
 | 
						|
 | 
						|
#define TAPPING_TERM 200
 | 
						|
 | 
						|
#ifdef AUDIO_ENABLE
 | 
						|
  #define B5_AUDIO
 | 
						|
  #define STARTUP_SONG SONG(ONE_UP_SOUND)
 | 
						|
  #define NO_MUSIC_MODE
 | 
						|
#endif
 | 
						|
 | 
						|
#if RGBLIGHT_ENABLE
 | 
						|
#define RGB_DI_PIN F5
 | 
						|
#define RGBLIGHT_ANIMATIONS
 | 
						|
#define RGBLIGHT_SLEEP
 | 
						|
#define RGBLED_NUM 47
 | 
						|
#define RGBLIGHT_EFFECT_KNIGHT_LED_NUM 12
 | 
						|
//#define RGBLIGHT_LIMIT_VAL 128
 | 
						|
#endif
 |