mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-30 21:02:32 +01:00 
			
		
		
		
	Refactor code to eliminate duplicate defines
* Moved duplicated defines out of inappropriate source files (matrix pins in keymap subdirectory) * Eliminated default keymap directory * Hardcoded serial keymap to use serial defines and EE_CONFIG * Hardcoded i2c keymap to use i2c defines
This commit is contained in:
		
							parent
							
								
									6f44885615
								
							
						
					
					
						commit
						9d24943ec1
					
				| @ -20,49 +20,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | |||||||
| 
 | 
 | ||||||
| #include "config_common.h" | #include "config_common.h" | ||||||
| 
 | 
 | ||||||
| /* USB Device descriptor parameter */ |  | ||||||
| #define VENDOR_ID       0xFEED |  | ||||||
| #define PRODUCT_ID      0x3060 |  | ||||||
| #define DEVICE_VER      0x0001 |  | ||||||
| #define MANUFACTURER    Wootpatoot |  | ||||||
| #define PRODUCT         Lets Split |  | ||||||
| #define DESCRIPTION     A split keyboard for the cheap makers |  | ||||||
| 
 |  | ||||||
| /* COL2ROW or ROW2COL */ |  | ||||||
| #define DIODE_DIRECTION COL2ROW |  | ||||||
| 
 |  | ||||||
| /* define if matrix has ghost */ |  | ||||||
| //#define MATRIX_HAS_GHOST
 |  | ||||||
| 
 |  | ||||||
| /* number of backlight levels */ |  | ||||||
| // #define BACKLIGHT_LEVELS 3
 |  | ||||||
| 
 |  | ||||||
| /* 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)) \ |  | ||||||
| ) |  | ||||||
| 
 |  | ||||||
| /* disable debug print */ |  | ||||||
| //#define NO_DEBUG
 |  | ||||||
| 
 |  | ||||||
| /* disable print */ |  | ||||||
| //#define NO_PRINT
 |  | ||||||
| 
 |  | ||||||
| /* disable action features */ |  | ||||||
| //#define NO_ACTION_LAYER
 |  | ||||||
| //#define NO_ACTION_TAPPING
 |  | ||||||
| //#define NO_ACTION_ONESHOT
 |  | ||||||
| //#define NO_ACTION_MACRO
 |  | ||||||
| //#define NO_ACTION_FUNCTION
 |  | ||||||
| 
 |  | ||||||
| #ifdef SUBPROJECT_rev1 | #ifdef SUBPROJECT_rev1 | ||||||
|     #include "rev1/config.h" |     #include "rev1/config.h" | ||||||
| #endif | #endif | ||||||
|  | |||||||
| @ -1,188 +0,0 @@ | |||||||
| #include "lets_split.h" |  | ||||||
| #include "action_layer.h" |  | ||||||
| #include "eeconfig.h" |  | ||||||
| 
 |  | ||||||
| extern keymap_config_t keymap_config; |  | ||||||
| 
 |  | ||||||
| // Each layer gets a name for readability, which is then used in the keymap matrix below.
 |  | ||||||
| // The underscores don't mean anything - you can have a layer called STUFF or any other name.
 |  | ||||||
| // Layer names don't all need to be of the same length, obviously, and you can also skip them
 |  | ||||||
| // entirely and just use numbers.
 |  | ||||||
| #define _QWERTY 0 |  | ||||||
| #define _COLEMAK 1 |  | ||||||
| #define _DVORAK 2 |  | ||||||
| #define _LOWER 3 |  | ||||||
| #define _RAISE 4 |  | ||||||
| #define _ADJUST 16 |  | ||||||
| 
 |  | ||||||
| enum custom_keycodes { |  | ||||||
|   QWERTY = SAFE_RANGE, |  | ||||||
|   COLEMAK, |  | ||||||
|   DVORAK, |  | ||||||
|   LOWER, |  | ||||||
|   RAISE, |  | ||||||
|   ADJUST, |  | ||||||
| }; |  | ||||||
| 
 |  | ||||||
| // Fillers to make layering more clear
 |  | ||||||
| #define _______ KC_TRNS |  | ||||||
| #define XXXXXXX KC_NO |  | ||||||
| 
 |  | ||||||
| const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |  | ||||||
| 
 |  | ||||||
| /* Qwerty
 |  | ||||||
|  * ,-----------------------------------------------------------------------------------. |  | ||||||
|  * | Tab  |   Q  |   W  |   E  |   R  |   T  |   Y  |   U  |   I  |   O  |   P  | Bksp | |  | ||||||
|  * |------+------+------+------+------+-------------+------+------+------+------+------| |  | ||||||
|  * | Esc  |   A  |   S  |   D  |   F  |   G  |   H  |   J  |   K  |   L  |   ;  |  "   | |  | ||||||
|  * |------+------+------+------+------+------|------+------+------+------+------+------| |  | ||||||
|  * | Shift|   Z  |   X  |   C  |   V  |   B  |   N  |   M  |   ,  |   .  |   /  |Enter | |  | ||||||
|  * |------+------+------+------+------+------+------+------+------+------+------+------| |  | ||||||
|  * |Adjust| Ctrl | Alt  | GUI  |Lower |Space |Space |Raise | Left | Down |  Up  |Right | |  | ||||||
|  * `-----------------------------------------------------------------------------------' |  | ||||||
|  */ |  | ||||||
| [_QWERTY] = KEYMAP( \ |  | ||||||
|   KC_ESC,  KC_Q,    KC_W,    KC_E,    KC_R,    KC_T,    KC_Y,    KC_U,    KC_I,    KC_O,    KC_P,    KC_BSPC, \ |  | ||||||
|   KC_TAB,  KC_A,    KC_S,    KC_D,    KC_F,    KC_G,    KC_H,    KC_J,    KC_K,    KC_L,    KC_SCLN, KC_QUOT, \ |  | ||||||
|   KC_LSFT, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_ENT , \ |  | ||||||
|   KC_LCTL, ADJUST, KC_LALT, KC_LGUI, LOWER,   KC_SPC,  MT(MOD_LSFT, KC_SPC),  RAISE,   KC_LEFT, KC_DOWN, KC_UP,   KC_RGHT \ |  | ||||||
| ), |  | ||||||
| 
 |  | ||||||
| /* Colemak
 |  | ||||||
|  * ,-----------------------------------------------------------------------------------. |  | ||||||
|  * | Tab  |   Q  |   W  |   F  |   P  |   G  |   J  |   L  |   U  |   Y  |   ;  | Bksp | |  | ||||||
|  * |------+------+------+------+------+-------------+------+------+------+------+------| |  | ||||||
|  * | Esc  |   A  |   R  |   S  |   T  |   D  |   H  |   N  |   E  |   I  |   O  |  "   | |  | ||||||
|  * |------+------+------+------+------+------|------+------+------+------+------+------| |  | ||||||
|  * | Shift|   Z  |   X  |   C  |   V  |   B  |   K  |   M  |   ,  |   .  |   /  |Enter | |  | ||||||
|  * |------+------+------+------+------+------+------+------+------+------+------+------| |  | ||||||
|  * |Adjust| Ctrl | Alt  | GUI  |Lower |Space |Space |Raise | Left | Down |  Up  |Right | |  | ||||||
|  * `-----------------------------------------------------------------------------------' |  | ||||||
|  */ |  | ||||||
| [_COLEMAK] = KEYMAP( \ |  | ||||||
|   KC_TAB,  KC_Q,    KC_W,    KC_F,    KC_P,    KC_G,    KC_J,    KC_L,    KC_U,    KC_Y,    KC_SCLN, KC_BSPC, \ |  | ||||||
|   KC_ESC,  KC_A,    KC_R,    KC_S,    KC_T,    KC_D,    KC_H,    KC_N,    KC_E,    KC_I,    KC_O,    KC_QUOT, \ |  | ||||||
|   KC_LSFT, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_K,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_ENT , \ |  | ||||||
|   ADJUST,  KC_LCTL, KC_LALT, KC_LGUI, LOWER,   KC_SPC,  KC_SPC,  RAISE,   KC_LEFT, KC_DOWN, KC_UP,   KC_RGHT \ |  | ||||||
| ), |  | ||||||
| 
 |  | ||||||
| /* Dvorak
 |  | ||||||
|  * ,-----------------------------------------------------------------------------------. |  | ||||||
|  * | Tab  |   "  |   ,  |   .  |   P  |   Y  |   F  |   G  |   C  |   R  |   L  | Bksp | |  | ||||||
|  * |------+------+------+------+------+-------------+------+------+------+------+------| |  | ||||||
|  * | Esc  |   A  |   O  |   E  |   U  |   I  |   D  |   H  |   T  |   N  |   S  |  /   | |  | ||||||
|  * |------+------+------+------+------+------|------+------+------+------+------+------| |  | ||||||
|  * | Shift|   ;  |   Q  |   J  |   K  |   X  |   B  |   M  |   W  |   V  |   Z  |Enter | |  | ||||||
|  * |------+------+------+------+------+------+------+------+------+------+------+------| |  | ||||||
|  * |Adjust| Ctrl | Alt  | GUI  |Lower |Space |Space |Raise | Left | Down |  Up  |Right | |  | ||||||
|  * `-----------------------------------------------------------------------------------' |  | ||||||
|  */ |  | ||||||
| [_DVORAK] = KEYMAP( \ |  | ||||||
|   KC_TAB,  KC_QUOT, KC_COMM, KC_DOT,  KC_P,    KC_Y,    KC_F,    KC_G,    KC_C,    KC_R,    KC_L,    KC_BSPC, \ |  | ||||||
|   KC_ESC,  KC_A,    KC_O,    KC_E,    KC_U,    KC_I,    KC_D,    KC_H,    KC_T,    KC_N,    KC_S,    KC_SLSH, \ |  | ||||||
|   KC_LSFT, KC_SCLN, KC_Q,    KC_J,    KC_K,    KC_X,    KC_B,    KC_M,    KC_W,    KC_V,    KC_Z,    KC_ENT , \ |  | ||||||
|   ADJUST,  KC_LCTL, KC_LALT, KC_LGUI, LOWER,   KC_SPC,  KC_SPC,  RAISE,   KC_LEFT, KC_DOWN, KC_UP,   KC_RGHT \ |  | ||||||
| ), |  | ||||||
| [3] = KEYMAP( \ |  | ||||||
|   KC_TILD, KC_EXLM, KC_AT,   KC_HASH, KC_DLR,  KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______, \ |  | ||||||
|   KC_DEL,  KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE, \ |  | ||||||
|   _______, KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,S(KC_NUHS),S(KC_NUBS),_______, _______, _______, \ |  | ||||||
|   _______, _______, _______, _______, _______, KC_BSPC, MT(MOD_LSFT, KC_BSPC), _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY \ |  | ||||||
| ), |  | ||||||
| [4] = KEYMAP( \ |  | ||||||
|   KC_GRV,  KC_1,    KC_2,    KC_3,    KC_4,    KC_5,    KC_6,    KC_7,    KC_8,    KC_9,    KC_0,    _______, \ |  | ||||||
|   KC_DEL,  KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_MINS, KC_EQL,  KC_LBRC, KC_RBRC, KC_BSLS, \ |  | ||||||
|   _______, KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,  KC_NUHS, KC_NUBS, _______, _______, _______, \ |  | ||||||
|   _______, _______, _______, _______, _______, KC_ENT, MT(MOD_LSFT, KC_ENT), _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY \ |  | ||||||
| ), |  | ||||||
| 
 |  | ||||||
| /* Adjust (Lower + Raise)
 |  | ||||||
|  * ,-----------------------------------------------------------------------------------. |  | ||||||
|  * |      | Reset|      |      |      |      |      |      |      |      |      |  Del | |  | ||||||
|  * |------+------+------+------+------+-------------+------+------+------+------+------| |  | ||||||
|  * |      |      |      |Aud on|Audoff|AGnorm|AGswap|Qwerty|Colemk|Dvorak|      |      | |  | ||||||
|  * |------+------+------+------+------+------|------+------+------+------+------+------| |  | ||||||
|  * |      |      |      |      |      |      |      |      |      |      |      |      | |  | ||||||
|  * |------+------+------+------+------+------+------+------+------+------+------+------| |  | ||||||
|  * |      |      |      |      |      |             |      |      |      |      |      | |  | ||||||
|  * `-----------------------------------------------------------------------------------' |  | ||||||
|  */ |  | ||||||
| [_ADJUST] =  KEYMAP( \ |  | ||||||
|   _______, RESET,   _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_DEL, \ |  | ||||||
|   _______, _______, _______, AU_ON,   AU_OFF,  AG_NORM, AG_SWAP, QWERTY,  COLEMAK, DVORAK,  _______, _______, \ |  | ||||||
|   _______, RGB_TOG,RGB_MOD,RGB_HUI,RGB_HUD,RGB_SAI,RGB_SAD,RGB_VAI,RGB_VAD, _______, _______, _______, \ |  | ||||||
|   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \ |  | ||||||
| ) |  | ||||||
| }; |  | ||||||
| 
 |  | ||||||
| #ifdef AUDIO_ENABLE |  | ||||||
| float tone_qwerty[][2]     = SONG(QWERTY_SOUND); |  | ||||||
| float tone_dvorak[][2]     = SONG(DVORAK_SOUND); |  | ||||||
| float tone_colemak[][2]    = SONG(COLEMAK_SOUND); |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| void persistant_default_layer_set(uint16_t default_layer) { |  | ||||||
|   eeconfig_update_default_layer(default_layer); |  | ||||||
|   default_layer_set(default_layer); |  | ||||||
| } |  | ||||||
| 
 |  | ||||||
| bool process_record_user(uint16_t keycode, keyrecord_t *record) { |  | ||||||
|   switch (keycode) { |  | ||||||
|     case QWERTY: |  | ||||||
|       if (record->event.pressed) { |  | ||||||
|         #ifdef AUDIO_ENABLE |  | ||||||
|           PLAY_NOTE_ARRAY(tone_qwerty, false, 0); |  | ||||||
|         #endif |  | ||||||
|         persistant_default_layer_set(1UL<<_QWERTY); |  | ||||||
|       } |  | ||||||
|       return false; |  | ||||||
|       break; |  | ||||||
|     case COLEMAK: |  | ||||||
|       if (record->event.pressed) { |  | ||||||
|         #ifdef AUDIO_ENABLE |  | ||||||
|           PLAY_NOTE_ARRAY(tone_colemak, false, 0); |  | ||||||
|         #endif |  | ||||||
|         persistant_default_layer_set(1UL<<_COLEMAK); |  | ||||||
|       } |  | ||||||
|       return false; |  | ||||||
|       break; |  | ||||||
|     case DVORAK: |  | ||||||
|       if (record->event.pressed) { |  | ||||||
|         #ifdef AUDIO_ENABLE |  | ||||||
|           PLAY_NOTE_ARRAY(tone_dvorak, false, 0); |  | ||||||
|         #endif |  | ||||||
|         persistant_default_layer_set(1UL<<_DVORAK); |  | ||||||
|       } |  | ||||||
|       return false; |  | ||||||
|       break; |  | ||||||
|     case LOWER: |  | ||||||
|       if (record->event.pressed) { |  | ||||||
|         layer_on(_LOWER); |  | ||||||
|         update_tri_layer(_LOWER, _RAISE, _ADJUST); |  | ||||||
|       } else { |  | ||||||
|         layer_off(_LOWER); |  | ||||||
|         update_tri_layer(_LOWER, _RAISE, _ADJUST); |  | ||||||
|       } |  | ||||||
|       return false; |  | ||||||
|       break; |  | ||||||
|     case RAISE: |  | ||||||
|       if (record->event.pressed) { |  | ||||||
|         layer_on(_RAISE); |  | ||||||
|         update_tri_layer(_LOWER, _RAISE, _ADJUST); |  | ||||||
|       } else { |  | ||||||
|         layer_off(_RAISE); |  | ||||||
|         update_tri_layer(_LOWER, _RAISE, _ADJUST); |  | ||||||
|       } |  | ||||||
|       return false; |  | ||||||
|       break; |  | ||||||
|     case ADJUST: |  | ||||||
|       if (record->event.pressed) { |  | ||||||
|         layer_on(_ADJUST); |  | ||||||
|       } else { |  | ||||||
|         layer_off(_ADJUST); |  | ||||||
|       } |  | ||||||
|       return false; |  | ||||||
|       break; |  | ||||||
|   } |  | ||||||
|   return true; |  | ||||||
| } |  | ||||||
| @ -14,89 +14,14 @@ GNU General Public License for more details. | |||||||
| You should have received a copy of the GNU General Public License | You should have received a copy of the GNU General Public License | ||||||
| along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | ||||||
| */ | */ | ||||||
| 
 |  | ||||||
| #ifndef CONFIG_H |  | ||||||
| #define CONFIG_H |  | ||||||
| 
 |  | ||||||
| #include "config_common.h" |  | ||||||
| 
 |  | ||||||
| /* USB Device descriptor parameter */ |  | ||||||
| #define VENDOR_ID       0xFEED |  | ||||||
| #define PRODUCT_ID      0x3060 |  | ||||||
| #define DEVICE_VER      0x0001 |  | ||||||
| #define MANUFACTURER    Wootpatoot |  | ||||||
| #define PRODUCT         Lets Split |  | ||||||
| #define DESCRIPTION     A split keyboard for the cheap makers |  | ||||||
| 
 |  | ||||||
| /* key matrix size */ |  | ||||||
| // Rows are doubled-up
 |  | ||||||
| #define MATRIX_ROWS 8 |  | ||||||
| #define MATRIX_COLS 6 |  | ||||||
| 
 |  | ||||||
| // wiring of each half
 |  | ||||||
| #define MATRIX_ROW_PINS { B5, B4, E6, D7 } |  | ||||||
| #define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3 } |  | ||||||
| 
 |  | ||||||
| #define CATERINA_BOOTLOADER |  | ||||||
| 
 |  | ||||||
| #define USE_I2C | #define USE_I2C | ||||||
| 
 | 
 | ||||||
| // Use serial if not using I2C
 |  | ||||||
| #ifndef USE_I2C |  | ||||||
| #  define USE_SERIAL |  | ||||||
| #endif |  | ||||||
| 
 |  | ||||||
| // #define EE_HANDS
 |  | ||||||
| 
 |  | ||||||
| #define I2C_MASTER_LEFT | #define I2C_MASTER_LEFT | ||||||
| // #define I2C_MASTER_RIGHT
 | // #define I2C_MASTER_RIGHT
 | ||||||
| 
 | 
 | ||||||
| /* COL2ROW or ROW2COL */ | #ifdef SUBPROJECT_rev1 | ||||||
| #define DIODE_DIRECTION COL2ROW |     #include "../../rev1/config.h" | ||||||
| 
 | #endif | ||||||
| /* define if matrix has ghost */ | #ifdef SUBPROJECT_rev2 | ||||||
| //#define MATRIX_HAS_GHOST
 |     #include "../../rev2/config.h" | ||||||
| 
 |  | ||||||
| /* number of backlight levels */ |  | ||||||
| // #define BACKLIGHT_LEVELS 3
 |  | ||||||
| 
 |  | ||||||
| /* 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)) \ |  | ||||||
| ) |  | ||||||
| 
 |  | ||||||
| /* ws2812 RGB LED */ |  | ||||||
| #define RGB_DI_PIN D4 |  | ||||||
| #define RGBLIGHT_ANIMATIONS |  | ||||||
| #define RGBLED_NUM 8     // Number of LEDs
 |  | ||||||
| #define RGBLIGHT_HUE_STEP 10 |  | ||||||
| #define RGBLIGHT_SAT_STEP 17 |  | ||||||
| #define RGBLIGHT_VAL_STEP 17 |  | ||||||
| 
 |  | ||||||
| /*
 |  | ||||||
|  * Feature disable options |  | ||||||
|  *  These options are also useful to firmware size reduction. |  | ||||||
|  */ |  | ||||||
| 
 |  | ||||||
| /* disable debug print */ |  | ||||||
| // #define NO_DEBUG
 |  | ||||||
| 
 |  | ||||||
| /* disable print */ |  | ||||||
| // #define NO_PRINT
 |  | ||||||
| 
 |  | ||||||
| /* disable action features */ |  | ||||||
| //#define NO_ACTION_LAYER
 |  | ||||||
| //#define NO_ACTION_TAPPING
 |  | ||||||
| //#define NO_ACTION_ONESHOT
 |  | ||||||
| //#define NO_ACTION_MACRO
 |  | ||||||
| //#define NO_ACTION_FUNCTION
 |  | ||||||
| 
 |  | ||||||
| #endif | #endif | ||||||
| @ -15,88 +15,15 @@ You should have received a copy of the GNU General Public License | |||||||
| along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | ||||||
| */ | */ | ||||||
| 
 | 
 | ||||||
| #ifndef CONFIG_H |  | ||||||
| #define CONFIG_H |  | ||||||
| 
 | 
 | ||||||
| #include "config_common.h" | #define USE_SERIAL | ||||||
| 
 | 
 | ||||||
| /* USB Device descriptor parameter */ | #define EE_HANDS | ||||||
| #define VENDOR_ID       0xFEED |  | ||||||
| #define PRODUCT_ID      0x3060 |  | ||||||
| #define DEVICE_VER      0x0001 |  | ||||||
| #define MANUFACTURER    Wootpatoot |  | ||||||
| #define PRODUCT         Lets Split |  | ||||||
| #define DESCRIPTION     A split keyboard for the cheap makers |  | ||||||
| 
 | 
 | ||||||
| /* key matrix size */ |  | ||||||
| // Rows are doubled-up
 |  | ||||||
| #define MATRIX_ROWS 8 |  | ||||||
| #define MATRIX_COLS 6 |  | ||||||
| 
 | 
 | ||||||
| // wiring of each half
 | #ifdef SUBPROJECT_rev1 | ||||||
| #define MATRIX_ROW_PINS { B5, B4, E6, D7 } |     #include "../../rev1/config.h" | ||||||
| #define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3 } |  | ||||||
| 
 |  | ||||||
| #define CATERINA_BOOTLOADER |  | ||||||
| 
 |  | ||||||
| // #define USE_I2C
 |  | ||||||
| 
 |  | ||||||
| // Use serial if not using I2C
 |  | ||||||
| #ifndef USE_I2C |  | ||||||
| #  define USE_SERIAL |  | ||||||
| #endif | #endif | ||||||
| 
 | #ifdef SUBPROJECT_rev2 | ||||||
| // #define EE_HANDS
 |     #include "../../rev2/config.h" | ||||||
| 
 |  | ||||||
| #define I2C_MASTER_LEFT |  | ||||||
| // #define I2C_MASTER_RIGHT
 |  | ||||||
| 
 |  | ||||||
| /* COL2ROW or ROW2COL */ |  | ||||||
| #define DIODE_DIRECTION COL2ROW |  | ||||||
| 
 |  | ||||||
| /* define if matrix has ghost */ |  | ||||||
| //#define MATRIX_HAS_GHOST
 |  | ||||||
| 
 |  | ||||||
| /* number of backlight levels */ |  | ||||||
| // #define BACKLIGHT_LEVELS 3
 |  | ||||||
| 
 |  | ||||||
| /* 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)) \ |  | ||||||
| ) |  | ||||||
| 
 |  | ||||||
| /* ws2812 RGB LED */ |  | ||||||
| #define RGB_DI_PIN D4 |  | ||||||
| #define RGBLIGHT_ANIMATIONS |  | ||||||
| #define RGBLED_NUM 8     // Number of LEDs
 |  | ||||||
| #define RGBLIGHT_HUE_STEP 10 |  | ||||||
| #define RGBLIGHT_SAT_STEP 17 |  | ||||||
| #define RGBLIGHT_VAL_STEP 17 |  | ||||||
| 
 |  | ||||||
| /*
 |  | ||||||
|  * Feature disable options |  | ||||||
|  *  These options are also useful to firmware size reduction. |  | ||||||
|  */ |  | ||||||
| 
 |  | ||||||
| /* disable debug print */ |  | ||||||
| // #define NO_DEBUG
 |  | ||||||
| 
 |  | ||||||
| /* disable print */ |  | ||||||
| // #define NO_PRINT
 |  | ||||||
| 
 |  | ||||||
| /* disable action features */ |  | ||||||
| //#define NO_ACTION_LAYER
 |  | ||||||
| //#define NO_ACTION_TAPPING
 |  | ||||||
| //#define NO_ACTION_ONESHOT
 |  | ||||||
| //#define NO_ACTION_MACRO
 |  | ||||||
| //#define NO_ACTION_FUNCTION
 |  | ||||||
| 
 |  | ||||||
| #endif | #endif | ||||||
| @ -25,7 +25,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | |||||||
| #define PRODUCT_ID      0x3060 | #define PRODUCT_ID      0x3060 | ||||||
| #define DEVICE_VER      0x0001 | #define DEVICE_VER      0x0001 | ||||||
| #define MANUFACTURER    Wootpatoot | #define MANUFACTURER    Wootpatoot | ||||||
| #define PRODUCT         Lets Split |  | ||||||
| #define PRODUCT         Lets Split v1 | #define PRODUCT         Lets Split v1 | ||||||
| #define DESCRIPTION     A split keyboard for the cheap makers | #define DESCRIPTION     A split keyboard for the cheap makers | ||||||
| 
 | 
 | ||||||
| @ -42,13 +41,13 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | |||||||
| 
 | 
 | ||||||
| // #define USE_I2C
 | // #define USE_I2C
 | ||||||
| // Use serial if not using I2C
 | // Use serial if not using I2C
 | ||||||
| #ifndef USE_I2C | /*#ifndef USE_I2C
 | ||||||
| #  define USE_SERIAL | #  define USE_SERIAL | ||||||
| #endif | #endif | ||||||
| 
 | 
 | ||||||
| // #define EE_HANDS
 | // #define EE_HANDS
 | ||||||
| 
 | 
 | ||||||
| #define I2C_MASTER_LEFT | #define I2C_MASTER_LEFT*/ | ||||||
| // #define I2C_MASTER_RIGHT
 | // #define I2C_MASTER_RIGHT
 | ||||||
| 
 | 
 | ||||||
| /* COL2ROW or ROW2COL */ | /* COL2ROW or ROW2COL */ | ||||||
|  | |||||||
| @ -42,13 +42,13 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>. | |||||||
| // #define USE_I2C
 | // #define USE_I2C
 | ||||||
| 
 | 
 | ||||||
| // Use serial if not using I2C
 | // Use serial if not using I2C
 | ||||||
| #ifndef USE_I2C | /*#ifndef USE_I2C
 | ||||||
| #  define USE_SERIAL | #  define USE_SERIAL | ||||||
| #endif | #endif | ||||||
| 
 | 
 | ||||||
| // #define EE_HANDS
 | // #define EE_HANDS
 | ||||||
| 
 | 
 | ||||||
| #define I2C_MASTER_LEFT | #define I2C_MASTER_LEFT*/ | ||||||
| // #define I2C_MASTER_RIGHT
 | // #define I2C_MASTER_RIGHT
 | ||||||
| 
 | 
 | ||||||
| /* COL2ROW or ROW2COL */ | /* COL2ROW or ROW2COL */ | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 TerryMathews
						TerryMathews