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/chord | |
parent | fe13cedf8c09fa34d5cec4e4c624738095176625 (diff) |
Remove non-Keychron keyboards
Diffstat (limited to 'keyboards/chord')
-rw-r--r-- | keyboards/chord/zero/config.h | 4 | ||||
-rw-r--r-- | keyboards/chord/zero/info.json | 65 | ||||
-rw-r--r-- | keyboards/chord/zero/keymaps/default/keymap.c | 25 | ||||
-rw-r--r-- | keyboards/chord/zero/keymaps/default/rules.mk | 1 | ||||
-rw-r--r-- | keyboards/chord/zero/readme.md | 37 | ||||
-rw-r--r-- | keyboards/chord/zero/rules.mk | 1 |
6 files changed, 0 insertions, 133 deletions
diff --git a/keyboards/chord/zero/config.h b/keyboards/chord/zero/config.h deleted file mode 100644 index 9d552d5af4..0000000000 --- a/keyboards/chord/zero/config.h +++ /dev/null @@ -1,4 +0,0 @@ -// Copyright (c) 2022 Simon Hengel <sol@typeful.net> -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once diff --git a/keyboards/chord/zero/info.json b/keyboards/chord/zero/info.json deleted file mode 100644 index c49a8a3c2f..0000000000 --- a/keyboards/chord/zero/info.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "manufacturer": "Simon Hengel", - "keyboard_name": "CHORD ZERO", - "usb": { - "device_version": "1.0.0", - "vid": "0x1D50", - "pid": "0x617C" - }, - "url": "https://github.com/sol/chord-zero#readme", - "maintainer": "sol", - "features": { - "bootmagic": true, - "command": false, - "console": false, - "extrakey": true, - "mousekey": true, - "nkro": true, - "steno": true - }, - "processor": "RP2040", - "bootloader": "rp2040", - "diode_direction": "COL2ROW", - "matrix_pins": { - "cols": ["GP22", "GP9", "GP21", "GP11", "GP19", "GP12"], - "rows": ["GP26", "GP20", "GP18", "GP17", "GP7", "GP10", "GP13", "GP14"] - }, - "layouts": { - "LAYOUT_zero": { - "layout": [ - { "matrix": [0, 0], "y": 0, "x": 0 }, - { "matrix": [0, 1], "y": 0, "x": 1 }, - { "matrix": [0, 2], "y": 0, "x": 2 }, - { "matrix": [0, 3], "y": 0, "x": 3 }, - { "matrix": [0, 4], "y": 0, "x": 4 }, - { "matrix": [0, 5], "y": 0, "x": 5 }, - { "matrix": [4, 5], "y": 0, "x": 8 }, - { "matrix": [4, 4], "y": 0, "x": 9 }, - { "matrix": [4, 3], "y": 0, "x": 10 }, - { "matrix": [4, 2], "y": 0, "x": 11 }, - { "matrix": [4, 1], "y": 0, "x": 12 }, - { "matrix": [4, 0], "y": 0, "x": 13 }, - - { "matrix": [1, 0], "y": 1, "x": 0 }, - { "matrix": [1, 1], "y": 1, "x": 1 }, - { "matrix": [1, 2], "y": 1, "x": 2 }, - { "matrix": [1, 3], "y": 1, "x": 3 }, - { "matrix": [1, 4], "y": 1, "x": 4 }, - { "matrix": [1, 5], "y": 1, "x": 5 }, - { "matrix": [5, 5], "y": 1, "x": 8 }, - { "matrix": [5, 4], "y": 1, "x": 9 }, - { "matrix": [5, 3], "y": 1, "x": 10 }, - { "matrix": [5, 2], "y": 1, "x": 11 }, - { "matrix": [5, 1], "y": 1, "x": 12 }, - { "matrix": [5, 0], "y": 1, "x": 13 }, - - { "matrix": [3, 3], "y": 3, "x": 3 }, - { "matrix": [3, 4], "y": 3, "x": 4 }, - { "matrix": [3, 5], "y": 3, "x": 5 }, - { "matrix": [7, 5], "y": 3, "x": 8 }, - { "matrix": [7, 4], "y": 3, "x": 9 }, - { "matrix": [7, 3], "y": 3, "x": 10 } - ] - } - } -} diff --git a/keyboards/chord/zero/keymaps/default/keymap.c b/keyboards/chord/zero/keymaps/default/keymap.c deleted file mode 100644 index a394893e1b..0000000000 --- a/keyboards/chord/zero/keymaps/default/keymap.c +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) 2022 Simon Hengel <sol@typeful.net> -// SPDX-License-Identifier: GPL-2.0-or-later - -#include QMK_KEYBOARD_H -#include "keymap_steno.h" - -const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - [0] = LAYOUT_zero( - STN_FN, STN_S1, STN_TL, STN_PL, STN_HL, STN_ST1, STN_ST3, STN_FR, STN_PR, STN_LR, STN_TR, STN_DR, - STN_PWR, STN_S2, STN_KL, STN_WL, STN_RL, STN_ST2, STN_ST4, STN_RR, STN_BR, STN_GR, STN_SR, STN_ZR, - STN_N1, STN_A, STN_O, STN_E, STN_U, STN_N7 - ) -}; - -const uint16_t PROGMEM bootloader_combo[] = { - keymaps[0][0][0], keymaps[0][4][0], - keymaps[0][1][0], keymaps[0][5][0], - keymaps[0][3][3], keymaps[0][7][3] -, COMBO_END }; - -combo_t key_combos[] = { - COMBO(bootloader_combo, QK_BOOTLOADER), -}; - -uint16_t COMBO_LEN = sizeof(key_combos) / sizeof(key_combos[0]); diff --git a/keyboards/chord/zero/keymaps/default/rules.mk b/keyboards/chord/zero/keymaps/default/rules.mk deleted file mode 100644 index ab1e438182..0000000000 --- a/keyboards/chord/zero/keymaps/default/rules.mk +++ /dev/null @@ -1 +0,0 @@ -COMBO_ENABLE = yes diff --git a/keyboards/chord/zero/readme.md b/keyboards/chord/zero/readme.md deleted file mode 100644 index 51e3f2ce10..0000000000 --- a/keyboards/chord/zero/readme.md +++ /dev/null @@ -1,37 +0,0 @@ -# CHORD ZERO Stenographic Keyboard - - - -CHORD ZERO is a stenographic keyboard that can be used with -[Plover](https://www.openstenoproject.org/plover/) or any other application -that supports the [TX -Bolt](https://docs.qmk.fm/#/feature_stenography?id=tx-bolt) or -[GeminiPR](https://docs.qmk.fm/#/feature_stenography?id=geminipr) protocol. - -* Keyboard Maintainer: [Simon Hengel](https://github.com/sol) -* Hardware Supported: REV 0, REV 1 -* Hardware Availability: https://github.com/sol/chord-zero#readme - -Make example for this keyboard (after setting up your build environment): - - make chord/zero:default - -or - - qmk compile -kb chord/zero -km default - -This will generate `chord_zero_default.uf2`. - -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). - -## Bootloader - -Enter the bootloader in 3 ways: - -* **Reset key combo**: Press the six keys at the outer columns on each side of the keyboard simultaneously while it is plugged in -* **Bootmagic reset**: Hold down the top left key and plug in the keyboard -* **Physical reset button**: Press the button on the back of the PCB and plug in the keyboard - -Once the keyboard is in bootloader mode you can mount it as a USB mass storage -device and copy the firmware (the file `chord_zero_default.uf2`) onto it. Once -copying is completed the keyboard will reboot automatically. diff --git a/keyboards/chord/zero/rules.mk b/keyboards/chord/zero/rules.mk deleted file mode 100644 index 6e7633bfe0..0000000000 --- a/keyboards/chord/zero/rules.mk +++ /dev/null @@ -1 +0,0 @@ -# This file intentionally left blank |