diff --git a/keyboards/system76/virgortholeft/config.h b/keyboards/system76/virgortholeft/config.h deleted file mode 100644 index 71b86bb33d2..00000000000 --- a/keyboards/system76/virgortholeft/config.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifndef CONFIG_H -#define CONFIG_H - -#include "config_common.h" - -/* USB Device descriptor parameter */ -#define VENDOR_ID 0x1776 -#define PRODUCT_ID 0x1776 -#define DEVICE_VER 0x0001 -#define MANUFACTURER System76 -#define PRODUCT Virgortholeft -#define DESCRIPTION Left half of 2U Split Ortho - -/* key matrix size */ -#define MATRIX_ROWS 6 -#define MATRIX_COLS 7 - -/* key matrix pins */ -#define MATRIX_ROW_PINS { F4, F5, F6, F7, B1, B3 } -#define MATRIX_COL_PINS { D1, D0, D4, C6, D7, E6, B4 } -#define UNUSED_PINS - -/* COL2ROW or ROW2COL */ -#define DIODE_DIRECTION COL2ROW - -/* Set 0 if debouncing isn't needed */ -#define DEBOUNCE 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 - -#endif // CONFIG_H diff --git a/keyboards/system76/virgortholeft/keymaps/default/keymap.c b/keyboards/system76/virgortholeft/keymaps/default/keymap.c deleted file mode 100644 index fb220198411..00000000000 --- a/keyboards/system76/virgortholeft/keymaps/default/keymap.c +++ /dev/null @@ -1,58 +0,0 @@ -#include QMK_KEYBOARD_H - -const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - - /* Layer 0, default layer - * ┌─────┬─────┬─────┬─────┬─────┬─────┬─────┐ - * │ Esc │ F1 │ F2 │ F3 │ F4 │ F5 │ F6 │ - * ├─────┼─────┼─────┼─────┼─────┼─────┼─────┤ - * │ ` ~ │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ - * ├─────┴─────┼─────┼─────┼─────┼─────┼─────┤ - * │ Tab │ Q │ W │ E │ R │ T │ - * ├───────────┼─────┼─────┼─────┼─────┼─────┤ - * │ Caps Lock │ A │ S │ D │ F │ G │ - * ├───────────┼─────┼─────┼─────┼─────┼─────┤ - * │ Shift │ Z │ X │ C │ V │ B │ - * ├───────────┼─────┼─────┼─────┼─────┴─────┤ - * │ Ctrl │ Fn │ Alt │Super│ Space │ - * └───────────┴─────┴─────┴─────┴───────────┘ - */ - - [0] = LAYOUT( - KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, - KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, - KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, - KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, - KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, - KC_LCTL, MO(1), KC_LALT, KC_LGUI, KC_SPC - ), - - /* Layer 1, function layer - * ┌─────┬─────┬─────┬─────┬─────┬─────┬─────┐ - * │ │ │ │ │ │ │RESET│ - * ├─────┼─────┼─────┼─────┼─────┼─────┼─────┤ - * │ │ │ │ │ │ │ │ - * ├─────┴─────┼─────┼─────┼─────┼─────┼─────┤ - * │ │ │ │ │ │ │ - * ├───────────┼─────┼─────┼─────┼─────┼─────┤ - * │ │ │ │ │ │ │ - * ├───────────┼─────┼─────┼─────┼─────┼─────┤ - * │ │ │ │ │ │ │ - * ├───────────┼─────┼─────┼─────┼─────┴─────┤ - * │ │ │ │ │ │ - * └───────────┴─────┴─────┴─────┴───────────┘ - */ - - [1] = LAYOUT( - KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET, - KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, - KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, - KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, - KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, - KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS - ), -}; - -bool process_record_user(uint16_t keycode, keyrecord_t *record) { - return true; -} diff --git a/keyboards/system76/virgortholeft/rules.mk b/keyboards/system76/virgortholeft/rules.mk deleted file mode 100644 index bc6e75d2c1a..00000000000 --- a/keyboards/system76/virgortholeft/rules.mk +++ /dev/null @@ -1,22 +0,0 @@ -# MCU name -MCU = atmega32u4 - -# Bootloader selection -# Teensy halfkay -# Pro Micro caterina -# Atmel DFU atmel-dfu -# LUFA DFU lufa-dfu -# QMK DFU qmk-dfu -# ATmega32A bootloadHID -# ATmega328P USBasp -BOOTLOADER = caterina - -# Build Options -# comment out to disable the options. -# -BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) -MOUSEKEY_ENABLE = no # Mouse keys(+4700) -EXTRAKEY_ENABLE = yes # Audio control and System control(+450) -CONSOLE_ENABLE = yes # Console for debug(+400) -COMMAND_ENABLE = no # Commands for debug and configuration -NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work diff --git a/keyboards/system76/virgortholeft/virgortholeft.c b/keyboards/system76/virgortholeft/virgortholeft.c deleted file mode 100644 index 662fe36720b..00000000000 --- a/keyboards/system76/virgortholeft/virgortholeft.c +++ /dev/null @@ -1,9 +0,0 @@ -#include "virgortholeft.h" - -void keyboard_post_init_user(void) { - // Customise these values to desired behaviour - debug_enable=true; - debug_matrix=true; - debug_keyboard=true; - //debug_mouse=true; -} diff --git a/keyboards/system76/virgortholeft/virgortholeft.h b/keyboards/system76/virgortholeft/virgortholeft.h deleted file mode 100644 index 6289b124143..00000000000 --- a/keyboards/system76/virgortholeft/virgortholeft.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef VIRGORTHOLEFT_H -#define VIRGORTHOLEFT_H - -#include "quantum.h" - -#define ___ KC_NO - -#define LAYOUT( \ - K00, K01, K02, K03, K04, K05, K06, \ - K10, K11, K12, K13, K14, K15, K16, \ - K21, K22, K23, K24, K25, K26, \ - K31, K32, K33, K34, K35, K36, \ - K41, K42, K43, K44, K45, K46, \ - K51, K52, K53, K54, K56 \ -) { \ - { K00, K01, K02, K03, K04, K05, K06 }, \ - { K10, K11, K12, K13, K14, K15, K16 }, \ - { ___, K21, K22, K23, K24, K25, K26 }, \ - { ___, K31, K32, K33, K34, K35, K36 }, \ - { ___, K41, K42, K43, K44, K45, K46 }, \ - { ___, K51, K52, K53, K54, ___, K56 }, \ -} - -#endif // VIRGORTHOLEFT_H diff --git a/keyboards/system76/virgorthoright/config.h b/keyboards/system76/virgorthoright/config.h deleted file mode 100644 index dae4303273e..00000000000 --- a/keyboards/system76/virgorthoright/config.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifndef CONFIG_H -#define CONFIG_H - -#include "config_common.h" - -/* USB Device descriptor parameter */ -#define VENDOR_ID 0x1776 -#define PRODUCT_ID 0x1777 -#define DEVICE_VER 0x0001 -#define MANUFACTURER System76 -#define PRODUCT Virgorthoright -#define DESCRIPTION Right half of 2U Split Ortho - -/* key matrix size */ -#define MATRIX_ROWS 6 -#define MATRIX_COLS 9 - -/* key matrix pins */ -#define MATRIX_ROW_PINS { F4, F5, F6, F7, B1, B3 } -#define MATRIX_COL_PINS { D3, D2, D1, D0, D4, C6, D7, E6, B4 } -#define UNUSED_PINS - -/* COL2ROW or ROW2COL */ -#define DIODE_DIRECTION COL2ROW - -/* Set 0 if debouncing isn't needed */ -#define DEBOUNCE 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 - -#endif // CONFIG_H diff --git a/keyboards/system76/virgorthoright/keymaps/default/keymap.c b/keyboards/system76/virgorthoright/keymaps/default/keymap.c deleted file mode 100644 index b555ff68d9f..00000000000 --- a/keyboards/system76/virgorthoright/keymaps/default/keymap.c +++ /dev/null @@ -1,58 +0,0 @@ -#include QMK_KEYBOARD_H - -const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - - /* Layer 0, default layer - * ┌─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┐ - * │ F7 │ F8 │ F9 │ F10 │ F11 │ F12 │PrtSc│ Del │ Ins │ - * ├─────┼─────┼─────┼─────┼─────┼─────┼─────┴─────┼─────┤ - * │ 7 │ 8 │ 9 │ 0 │ - _ │ = + │ Backspace │ Home│ - * ├─────┼─────┼─────┼─────┼─────┼─────┼─────┬─────┼─────┤ - * │ Y │ U │ I │ O │ P │ [ { │ ] } │ \ | │ PgUp│ - * ├─────┼─────┼─────┼─────┼─────┼─────┼─────┴─────┼─────┤ - * │ H │ J │ K │ L │ ; : │ ' " │ Enter │ PgDn│ - * ├─────┼─────┼─────┼─────┼─────┼─────┴─────┬─────┼─────┤ - * │ N │ M │ , < │ . > │ / ? │ Shift │ Up │ End │ - * ├─────┴─────┼─────┼─────┼─────┴─────┬─────┼─────┼─────┤ - * │ Space │ Alt │ Fn │ Ctrl │ Left│ Down│Right│ - * └───────────┴─────┴─────┴───────────┴─────┴─────┴─────┘ - */ - - [0] = LAYOUT( - KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_DEL, KC_INS, - KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_HOME, - KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_PGUP, - KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_PGDN, - KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_END, - KC_SPC, KC_RALT, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT - ), - - /* Layer 1, function layer - * ┌─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┐ - * │ │ │ │ │ │ │ │ │ │ - * ├─────┼─────┼─────┼─────┼─────┼─────┼─────┴─────┼─────┤ - * │ │ │ │ │ │ │ │ │ - * ├─────┼─────┼─────┼─────┼─────┼─────┼─────┬─────┼─────┤ - * │ │ │ │ │ │ │ │ │ │ - * ├─────┼─────┼─────┼─────┼─────┼─────┼─────┴─────┼─────┤ - * │ │ │ │ │ │ │ │ │ - * ├─────┼─────┼─────┼─────┼─────┼─────┴─────┬─────┼─────┤ - * │ │ │ │ │ │ │ │ │ - * ├─────┴─────┼─────┼─────┼─────┴─────┬─────┼─────┼─────┤ - * │ │ │ │ │ │ │ │ - * └───────────┴─────┴─────┴───────────┴─────┴─────┴─────┘ - */ - - [1] = LAYOUT( - KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, - KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, - KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, - KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, - KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, - KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS - ), -}; - -bool process_record_user(uint16_t keycode, keyrecord_t *record) { - return true; -} diff --git a/keyboards/system76/virgorthoright/rules.mk b/keyboards/system76/virgorthoright/rules.mk deleted file mode 100644 index bc6e75d2c1a..00000000000 --- a/keyboards/system76/virgorthoright/rules.mk +++ /dev/null @@ -1,22 +0,0 @@ -# MCU name -MCU = atmega32u4 - -# Bootloader selection -# Teensy halfkay -# Pro Micro caterina -# Atmel DFU atmel-dfu -# LUFA DFU lufa-dfu -# QMK DFU qmk-dfu -# ATmega32A bootloadHID -# ATmega328P USBasp -BOOTLOADER = caterina - -# Build Options -# comment out to disable the options. -# -BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) -MOUSEKEY_ENABLE = no # Mouse keys(+4700) -EXTRAKEY_ENABLE = yes # Audio control and System control(+450) -CONSOLE_ENABLE = yes # Console for debug(+400) -COMMAND_ENABLE = no # Commands for debug and configuration -NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work diff --git a/keyboards/system76/virgorthoright/virgorthoright.c b/keyboards/system76/virgorthoright/virgorthoright.c deleted file mode 100644 index 224aef6ff75..00000000000 --- a/keyboards/system76/virgorthoright/virgorthoright.c +++ /dev/null @@ -1,9 +0,0 @@ -#include "virgorthoright.h" - -void keyboard_post_init_user(void) { - // Customise these values to desired behaviour - debug_enable=true; - debug_matrix=true; - debug_keyboard=true; - //debug_mouse=true; -} diff --git a/keyboards/system76/virgorthoright/virgorthoright.h b/keyboards/system76/virgorthoright/virgorthoright.h deleted file mode 100644 index 36faa3c3899..00000000000 --- a/keyboards/system76/virgorthoright/virgorthoright.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef VIRGORTHORIGHT_H -#define VIRGORTHORIGHT_H - -#include "quantum.h" - -#define ___ KC_NO - -#define LAYOUT( \ - K00, K01, K02, K03, K04, K05, K06, K07, K08, \ - K10, K11, K12, K13, K14, K15, K16, K18, \ - K20, K21, K22, K23, K24, K25, K26, K27, K28, \ - K30, K31, K32, K33, K34, K35, K36, K38, \ - K40, K41, K42, K43, K44, K45, K47, K48, \ - K50, K52, K53, K54, K56, K57, K58 \ -) { \ - { K00, K01, K02, K03, K04, K05, K06, K07, K08 }, \ - { K10, K11, K12, K13, K14, K15, K16, ___, K18 }, \ - { K20, K21, K22, K23, K24, K25, K26, K27, K28 }, \ - { K30, K31, K32, K33, K34, K35, K36, ___, K38 }, \ - { K40, K41, K42, K43, K44, K45, ___, K47, K48 }, \ - { K50, ___, K52, K53, K54, ___, K56, K57, K58 }, \ -} - -#endif // VIRGORTHORIGHT_H