diff options
author | lokher <lokher@gmail.com> | 2022-09-13 11:24:05 +0800 |
---|---|---|
committer | lokher <lokher@gmail.com> | 2022-09-13 11:24:05 +0800 |
commit | 9581289745736ce068a1040f44cec37a2ca8830d (patch) | |
tree | 24f644715a5fd6cc4d804d9604fb094307808b1b /keyboards/swiftrax | |
parent | fe13cedf8c09fa34d5cec4e4c624738095176625 (diff) |
Remove non-Keychron keyboards
Diffstat (limited to 'keyboards/swiftrax')
-rw-r--r-- | keyboards/swiftrax/retropad/config.h | 57 | ||||
-rw-r--r-- | keyboards/swiftrax/retropad/info.json | 16 | ||||
-rw-r--r-- | keyboards/swiftrax/retropad/keymaps/default/keymap.c | 70 | ||||
-rw-r--r-- | keyboards/swiftrax/retropad/keymaps/via/keymap.c | 70 | ||||
-rw-r--r-- | keyboards/swiftrax/retropad/keymaps/via/rules.mk | 1 | ||||
-rw-r--r-- | keyboards/swiftrax/retropad/readme.md | 13 | ||||
-rw-r--r-- | keyboards/swiftrax/retropad/retropad.c | 16 | ||||
-rw-r--r-- | keyboards/swiftrax/retropad/retropad.h | 31 | ||||
-rw-r--r-- | keyboards/swiftrax/retropad/rules.mk | 19 |
9 files changed, 0 insertions, 293 deletions
diff --git a/keyboards/swiftrax/retropad/config.h b/keyboards/swiftrax/retropad/config.h deleted file mode 100644 index 2031595fec..0000000000 --- a/keyboards/swiftrax/retropad/config.h +++ /dev/null @@ -1,57 +0,0 @@ -/* -Copyright 2020 Swiftrax <swiftrax@gmail.com> - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 2 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see <http://www.gnu.org/licenses/>. -*/ - -#pragma once - -#include "config_common.h" - -/* key matrix size */ -#define MATRIX_ROWS 3 -#define MATRIX_COLS 2 - -// ROWS: Top to bottom, COLS: Left to right - -#define MATRIX_ROW_PINS { C7, C6, B5 } -#define MATRIX_COL_PINS { B4, D2 } - -#define ENCODERS_PAD_A { D0 } -#define ENCODERS_PAD_B { D1 } - -/* COL2ROW or ROW2COL */ -#define DIODE_DIRECTION COL2ROW - -#define RGB_DI_PIN B7 -#ifdef RGB_DI_PIN -#define RGBLIGHT_ANIMATIONS -#define RGBLED_NUM 6 -#define RGBLIGHT_HUE_STEP 8 -#define RGBLIGHT_SAT_STEP 8 -#define RGBLIGHT_VAL_STEP 8 -#endif - -/* define if matrix has ghost */ -//#define MATRIX_HAS_GHOST - -/* Set 0 if debouncing isn't needed */ -#define DEBOUNCE 5 - -/*EEPROM for via*/ -#define DYNAMIC_KEYMAP_LAYER_COUNT 3 - -/* bootmagic row col assignment */ -#define BOOTMAGIC_LITE_ROW 1 -#define BOOTMAGIC_LITE_COLUMN 0 diff --git a/keyboards/swiftrax/retropad/info.json b/keyboards/swiftrax/retropad/info.json deleted file mode 100644 index 4e3137edb0..0000000000 --- a/keyboards/swiftrax/retropad/info.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "keyboard_name": "Retropad", - "manufacturer": "Swiftrax", - "url": "https://github.com/swiftrax", - "maintainer": "swiftrax", - "usb": { - "vid": "0x04D8", - "pid": "0xEB0C", - "device_version": "0.0.1" - }, - "layouts": { - "LAYOUT": { - "layout": [{"label":"0,1", "x":0.5, "y":0}, {"label":"1,0", "x":0, "y":1.5}, {"label":"1,1", "x":1, "y":1.5}, {"label":"2,0", "x":0, "y":2.5}, {"label":"2,1", "x":1, "y":2.5}] - } - } -} diff --git a/keyboards/swiftrax/retropad/keymaps/default/keymap.c b/keyboards/swiftrax/retropad/keymaps/default/keymap.c deleted file mode 100644 index 6fd2ff5daa..0000000000 --- a/keyboards/swiftrax/retropad/keymaps/default/keymap.c +++ /dev/null @@ -1,70 +0,0 @@ - /* Copyright 2020 swiftrax - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ -#include QMK_KEYBOARD_H - -const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - -[0] = LAYOUT( - TO(1), //windows - KC_MSTP, KC_MPLY, - KC_MPRV, KC_MNXT), - -[1] = LAYOUT( //macOS - TO(2), - KC_MSTP, KC_MPLY, - KC_MRWD, KC_MFFD), - -[2] = LAYOUT( - TO(0), - KC_HOME, KC_PGUP, - KC_END, KC_PGDN), -}; - -bool encoder_update_user(uint8_t index, bool clockwise) { - if(IS_LAYER_ON(2)){ - if (clockwise) - tap_code(KC_LEFT); - else - tap_code(KC_RGHT); - } - else{ - if(clockwise) - tap_code(KC_VOLU); - else - tap_code(KC_VOLD); - } - return true; -} - -void matrix_init_user(void) { - // set top LED to output and off (active low) - setPinOutput(D5); - writePinHigh(D5); - // set middle LED to output and off (active low) - setPinOutput(D4); - writePinHigh(D4); - // set bottom LED to output and off (active low) - setPinOutput(D3); - writePinHigh(D3); -} - -// write to above indicators in a binary fashion based on current layer -layer_state_t layer_state_set_user(layer_state_t state) { - writePin(D5, get_highest_layer(state)); - writePin(D4, !layer_state_cmp(state, 1)); - writePin(D3, !layer_state_cmp(state, 2)); - return state; -} diff --git a/keyboards/swiftrax/retropad/keymaps/via/keymap.c b/keyboards/swiftrax/retropad/keymaps/via/keymap.c deleted file mode 100644 index 6fd2ff5daa..0000000000 --- a/keyboards/swiftrax/retropad/keymaps/via/keymap.c +++ /dev/null @@ -1,70 +0,0 @@ - /* Copyright 2020 swiftrax - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ -#include QMK_KEYBOARD_H - -const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - -[0] = LAYOUT( - TO(1), //windows - KC_MSTP, KC_MPLY, - KC_MPRV, KC_MNXT), - -[1] = LAYOUT( //macOS - TO(2), - KC_MSTP, KC_MPLY, - KC_MRWD, KC_MFFD), - -[2] = LAYOUT( - TO(0), - KC_HOME, KC_PGUP, - KC_END, KC_PGDN), -}; - -bool encoder_update_user(uint8_t index, bool clockwise) { - if(IS_LAYER_ON(2)){ - if (clockwise) - tap_code(KC_LEFT); - else - tap_code(KC_RGHT); - } - else{ - if(clockwise) - tap_code(KC_VOLU); - else - tap_code(KC_VOLD); - } - return true; -} - -void matrix_init_user(void) { - // set top LED to output and off (active low) - setPinOutput(D5); - writePinHigh(D5); - // set middle LED to output and off (active low) - setPinOutput(D4); - writePinHigh(D4); - // set bottom LED to output and off (active low) - setPinOutput(D3); - writePinHigh(D3); -} - -// write to above indicators in a binary fashion based on current layer -layer_state_t layer_state_set_user(layer_state_t state) { - writePin(D5, get_highest_layer(state)); - writePin(D4, !layer_state_cmp(state, 1)); - writePin(D3, !layer_state_cmp(state, 2)); - return state; -} diff --git a/keyboards/swiftrax/retropad/keymaps/via/rules.mk b/keyboards/swiftrax/retropad/keymaps/via/rules.mk deleted file mode 100644 index 036bd6d1c3..0000000000 --- a/keyboards/swiftrax/retropad/keymaps/via/rules.mk +++ /dev/null @@ -1 +0,0 @@ -VIA_ENABLE = yes
\ No newline at end of file diff --git a/keyboards/swiftrax/retropad/readme.md b/keyboards/swiftrax/retropad/readme.md deleted file mode 100644 index 34f6af405f..0000000000 --- a/keyboards/swiftrax/retropad/readme.md +++ /dev/null @@ -1,13 +0,0 @@ -# Retropad - -2x2 macro pad with a rotary encoder - -* Keyboard Maintainer: Swiftrax -* Hardware Supported: Retropad PCB -* Hardware Availability: https://github.com/swiftrax - -Make example for this keyboard (after setting up your build environment): - - make swiftrax/retropad:default - -See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). diff --git a/keyboards/swiftrax/retropad/retropad.c b/keyboards/swiftrax/retropad/retropad.c deleted file mode 100644 index 3ffe29528f..0000000000 --- a/keyboards/swiftrax/retropad/retropad.c +++ /dev/null @@ -1,16 +0,0 @@ -/* Copyright 2020 swiftrax - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ -#include "retropad.h"
\ No newline at end of file diff --git a/keyboards/swiftrax/retropad/retropad.h b/keyboards/swiftrax/retropad/retropad.h deleted file mode 100644 index e7527d5c00..0000000000 --- a/keyboards/swiftrax/retropad/retropad.h +++ /dev/null @@ -1,31 +0,0 @@ -/* Copyright 2020 swiftrax - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ -#pragma once - -#include "quantum.h" - -// readability -#define XXX KC_NO - -#define LAYOUT( \ - K001, \ - K100, K101, \ - K200, K201 \ -) { \ - { XXX, K001, }, \ - { K100, K101, }, \ - { K200, K201, } \ -} diff --git a/keyboards/swiftrax/retropad/rules.mk b/keyboards/swiftrax/retropad/rules.mk deleted file mode 100644 index f178369897..0000000000 --- a/keyboards/swiftrax/retropad/rules.mk +++ /dev/null @@ -1,19 +0,0 @@ -# MCU name -MCU = atmega32u2 - -# Bootloader selection -BOOTLOADER = atmel-dfu - -# Build Options -# change yes to no to disable -# -BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite -MOUSEKEY_ENABLE = no # Mouse keys -EXTRAKEY_ENABLE = yes # Audio control and System control -CONSOLE_ENABLE = no # Console for debug -COMMAND_ENABLE = no # Commands for debug and configuration -NKRO_ENABLE = no # Enable N-Key Rollover -BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality -RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow -AUDIO_ENABLE = no # Audio output -ENCODER_ENABLE = yes |