diff options
Diffstat (limited to 'keyboards/boardrun/classic')
-rw-r--r-- | keyboards/boardrun/classic/classic.c | 16 | ||||
-rw-r--r-- | keyboards/boardrun/classic/classic.h | 33 | ||||
-rw-r--r-- | keyboards/boardrun/classic/config.h | 73 | ||||
-rw-r--r-- | keyboards/boardrun/classic/info.json | 92 | ||||
-rw-r--r-- | keyboards/boardrun/classic/keymaps/default/keymap.c | 73 | ||||
-rw-r--r-- | keyboards/boardrun/classic/keymaps/via/keymap.c | 77 | ||||
-rw-r--r-- | keyboards/boardrun/classic/keymaps/via/rules.mk | 2 | ||||
-rw-r--r-- | keyboards/boardrun/classic/readme.md | 23 | ||||
-rw-r--r-- | keyboards/boardrun/classic/rules.mk | 18 |
9 files changed, 0 insertions, 407 deletions
diff --git a/keyboards/boardrun/classic/classic.c b/keyboards/boardrun/classic/classic.c deleted file mode 100644 index 49eea39329..0000000000 --- a/keyboards/boardrun/classic/classic.c +++ /dev/null @@ -1,16 +0,0 @@ -/* - * 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 "classic.h" diff --git a/keyboards/boardrun/classic/classic.h b/keyboards/boardrun/classic/classic.h deleted file mode 100644 index 173c686c74..0000000000 --- a/keyboards/boardrun/classic/classic.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * 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" - -#define LAYOUT_classic( \ - k11, k12, k13, k14, k15, k16, k17, k18, k19, k110, k111, k112, k113, k114, \ - k21, k22, k23, k24, k25, k26, k27, k28, k29, k210, k211, k212, k213, k214, \ - k31, k32, k33, k34, k35, k36, k37, k38, k39, k310, k311, k312, k313, k314, \ - k41, k42, k43, k44, k45, k46, k47, k48, k49, k410, k411, k412, k413, k414, \ - k52, k53, k54, k55, k56, k57, k51, k58, k59, k510, k511, k512, k513 \ -) \ -{ \ - { k11, k12, k13, k14, k15, k16, k17, k18, k19, k110, k111, k112, k113, k114 , KC_NO, KC_NO, KC_NO,}, \ - { k21, k22, k23, k24, k25, k26, k27, k28, k29, k210, k211, k212, k213, k214 , KC_NO, KC_NO, KC_NO,}, \ - { k31, k32, k33, k34, k35, k36, k37, k38, k39, k310, k311, k312, k313, k314 , KC_NO, KC_NO, KC_NO,}, \ - { k41, k42, k43, k44, k45, k46, k47, k48, k49, k410, k411, k412, k413, k414 , KC_NO, KC_NO, KC_NO,}, \ - { k51, k52, k53, k54, k55, k56, k57, k58, k59, k510, k511, k512, k513, KC_NO, KC_NO, KC_NO, KC_NO} \ -} diff --git a/keyboards/boardrun/classic/config.h b/keyboards/boardrun/classic/config.h deleted file mode 100644 index f65abc2ff4..0000000000 --- a/keyboards/boardrun/classic/config.h +++ /dev/null @@ -1,73 +0,0 @@ -/* -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 5 -#define MATRIX_COLS 17 - -/* - * Keyboard Matrix Assignments - * - * Change this to how you wired your keyboard - * COLS: AVR pins used for columns, left to right - * ROWS: AVR pins used for rows, top to bottom - * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) - * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) - * -*/ -#define MATRIX_ROW_PINS { F0, F1, F4, F5, F6 } -#define MATRIX_COL_PINS { F7, C7, C6, B6, B5, B4, D7, D6, D4, D5, D3, D2, D1, D0, B3, B2, B1 } - -/* COL2ROW, ROW2COL */ -#define DIODE_DIRECTION COL2ROW - -// #define BACKLIGHT_PIN F5 -// #define BACKLIGHT_LEVELS 6 - -/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ -#define DEBOUNCE 10 - -/* 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 - -/* - * 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 - -// ws2812 options -#define RGB_DI_PIN B7 // pin the DI on the ws2812 is hooked-up to -#define RGBLIGHT_ANIMATIONS // run RGB animations -#define RGBLED_NUM 14 // number of LEDs -#define RGBLIGHT_HUE_STEP 12 // units to step when in/decreasing hue -#define RGBLIGHT_SAT_STEP 25 // units to step when in/decresing saturation -#define RGBLIGHT_VAL_STEP 12 // units to step when in/decreasing value (brightness) diff --git a/keyboards/boardrun/classic/info.json b/keyboards/boardrun/classic/info.json deleted file mode 100644 index 70ff145c06..0000000000 --- a/keyboards/boardrun/classic/info.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "keyboard_name": "Boardrun Classic", - "manufacturer": "shensmobile", - "url": "https://github.com/qmk/qmk_firmware/tree/master/keyboards/boardrun/classic", - "maintainer": "QMK Community", - "usb": { - "vid": "0xCDCD", - "pid": "0x5338", - "device_version": "0.0.1" - }, - "layouts": { - "LAYOUT_classic": { - "layout": [ - {"y":0, "x":0, "label":"Esc", "w":1.5}, - {"y":0, "x":1.5, "label":"1"}, - {"y":0, "x":2.5, "label":"2"}, - {"y":0, "x":3.5, "label":"3"}, - {"y":0, "x":4.5, "label":"4"}, - {"y":0, "x":5.5, "label":"5"}, - {"y":0, "x":6.5, "label":"-"}, - {"y":0, "x":9, "label":"="}, - {"y":0, "x":10, "label":"6"}, - {"y":0, "x":11, "label":"7"}, - {"y":0, "x":12, "label":"8"}, - {"y":0, "x":13, "label":"9"}, - {"y":0, "x":14, "label":"0"}, - {"y":0, "x":15, "label":"Backspace", "w":1.5}, - - {"y":1, "x":0, "label":"Tab", "w":1.5}, - {"y":1, "x":1.5, "label":"Q"}, - {"y":1, "x":2.5, "label":"W"}, - {"y":1, "x":3.5, "label":"E"}, - {"y":1, "x":4.5, "label":"R"}, - {"y":1, "x":5.5, "label":"T"}, - {"y":1, "x":6.5, "label":"["}, - {"y":1, "x":9, "label":"]"}, - {"y":1, "x":10, "label":"Y"}, - {"y":1, "x":11, "label":"U"}, - {"y":1, "x":12, "label":"I"}, - {"y":1, "x":13, "label":"O"}, - {"y":1, "x":14, "label":"P"}, - {"y":1, "x":15, "label":"\\", "w":1.5}, - - {"y":2, "x":0, "label":"LCtrl", "w":1.5}, - {"y":2, "x":1.5, "label":"A"}, - {"y":2, "x":2.5, "label":"S"}, - {"y":2, "x":3.5, "label":"D"}, - {"y":2, "x":4.5, "label":"F"}, - {"y":2, "x":5.5, "label":"G"}, - {"y":2, "x":6.5, "label":"Home"}, - {"y":2, "x":9, "label":"PgUp"}, - {"y":2, "x":10, "label":"H"}, - {"y":2, "x":11, "label":"J"}, - {"y":2, "x":12, "label":"K"}, - {"y":2, "x":13, "label":"L"}, - {"y":2, "x":14, "label":";"}, - {"y":2, "x":15, "label":"'", "w":1.5}, - - {"y":3, "x":0, "label":"LShift", "w":1.5}, - {"y":3, "x":1.5, "label":"Z"}, - {"y":3, "x":2.5, "label":"X"}, - {"y":3, "x":3.5, "label":"C"}, - {"y":3, "x":4.5, "label":"V"}, - {"y":3, "x":5.5, "label":"B"}, - {"y":3, "x":6.5, "label":"End"}, - {"y":3, "x":9, "label":"PgDn"}, - {"y":3, "x":10, "label":"N"}, - {"y":3, "x":11, "label":"M"}, - {"y":3, "x":12, "label":","}, - {"y":3, "x":13, "label":"."}, - {"y":3, "x":14, "label":"/"}, - {"y":3, "x":15, "label":"RShift / Enter", "w":1.5}, - - {"y":4, "x":1.5, "label":"LGui"}, - {"y":4, "x":2.5, "label":"Del"}, - {"y":4, "x":3.5, "label":"`"}, - {"y":4, "x":4.5, "label":"LAlt"}, - {"y":4, "x":5.5, "label":"Space"}, - {"y":4, "x":6.5, "label":"Space"}, - {"y":4, "x":7.75,"label":"Fn"}, - {"y":4, "x":9, "label":"Space / AltGr"}, - {"y":4, "x":10, "label":"Space / AltGr"}, - {"y":4, "x":11, "label":"Left"}, - {"y":4, "x":12, "label":"Down"}, - {"y":4, "x":13, "label":"Up"}, - {"y":4, "x":14, "label":"Right"} - - ] - } - } - -} diff --git a/keyboards/boardrun/classic/keymaps/default/keymap.c b/keyboards/boardrun/classic/keymaps/default/keymap.c deleted file mode 100644 index c4dbb8d396..0000000000 --- a/keyboards/boardrun/classic/keymaps/default/keymap.c +++ /dev/null @@ -1,73 +0,0 @@ -/* - * 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 - -#define _FUNC MO(_FNCLASSIC) -#define _SHENT RSFT_T(KC_ENT) -#define _LSNUBS LSFT_T(KC_NUBS) -#define _AGRSPC RALT_T(KC_SPC) - - -// Layer shorthand -enum layer_names { - _CLASSIC, - _FNCLASSIC, -}; - -const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - - /* Base Layer - * .--------------------------------------------------------------. .--------------------------------------------------------------. - * | ESC | 1 | 2 | 3 | 4 | 5 | - | | = | 6 | 7 | 8 | 9 | 0 | BACKSP | - * |--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------| - * | TAB | Q | W | E | R | T | [ | | ] | Y | U | I | O | P | |\ | - * |--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------| - * | LCTRL | A | S | D | F | G | HOME | | PG UP | H | J | K | L | ; | ' | - * |--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------| - * | LSHIFT | Z | X | C | V | B | END | | PG DN | N | M | , | . | / | SH/ENT | - * '--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------' - * | LGUI | DEL | ~` | LALT | SPACE | | FN | SPACE | | LEFT | DOWN | UP | RIGHT | - * '--------------------------------------------------------------------------------------------------------------------' - */ - [_CLASSIC] = LAYOUT_classic( - KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_MINS, KC_EQL, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, - KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_LBRC, KC_RBRC, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS, - KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_HOME, KC_PGUP, 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_END, KC_PGDN, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, _SHENT, - KC_LGUI, KC_DEL, KC_GRV, KC_LALT, KC_SPC, KC_SPC, _FUNC, _AGRSPC, _AGRSPC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT - ), - - /* Function Layer - * .--------------------------------------------------------------. .--------------------------------------------------------------. - * | QK_BOOT | F1 | F2 | F3 | F4 | F5 | F11 | | F12 | F6 | F7 | F8 | F9 | F10 | DEL | - * |--------+--------+--------+--------+--------+--------+--------+ +--------+--------+--------+--------+--------+--------+--------| - * | | | MENU | | QK_BOOT | | | | | | | INS | | PRT SC | | - * |--------+--------+--------+--------+--------+--------+--------+ +--------+--------+--------+--------+--------+--------+--------| - * | CAPSLK | | SCROLL | | | | | | | | | | | | RCTL | - * |--------+--------+--------+--------+--------+--------+--------+ +--------+--------+--------+--------+--------+--------+--------| - * | UK \| | | | | | PAUSE | | | | | MUTE | VOL DN | VOL UP | | | - * '--------+--------+--------+--------+--------+-----------------+--------+--------+--------+--------+--------+--------+--------+--------' - * | RGUI | | | RALT | | | | | | | | - * '--------------------------------------------------------------------------------------------------------------------' - */ - [_FNCLASSIC] = LAYOUT_classic( - QK_BOOT, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F11, KC_F12, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, _______, - _______, _______, KC_APP, _______, QK_BOOT, _______, _______, _______, _______, _______, KC_INS, _______, KC_PSCR, _______, - KC_CAPS, _______, KC_SLCK, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_RCTL, - _LSNUBS, _______, _______, _______, _______, KC_PAUS, _______, _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______, - KC_RGUI, _______, _______, KC_RALT, _______, _______, _______, _______, _______, _______, _______, _______, _______ - ) -}; diff --git a/keyboards/boardrun/classic/keymaps/via/keymap.c b/keyboards/boardrun/classic/keymaps/via/keymap.c deleted file mode 100644 index 0994e925ea..0000000000 --- a/keyboards/boardrun/classic/keymaps/via/keymap.c +++ /dev/null @@ -1,77 +0,0 @@ -/* - * 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] = { - - /* Base Layer - * .--------------------------------------------------------------. .--------------------------------------------------------------. - * | ESC | 1 | 2 | 3 | 4 | 5 | - | | = | 6 | 7 | 8 | 9 | 0 | BACKSP | - * |--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------| - * | TAB | Q | W | E | R | T | [ | | ] | Y | U | I | O | P | |\ | - * |--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------| - * | LCTRL | A | S | D | F | G | HOME | | PG UP | H | J | K | L | ; | ' | - * |--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------| - * | LSHIFT | Z | X | C | V | B | END | | PG DN | N | M | , | . | / | ENTER | - * '--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+-------' - * | LGUI | DEL | ~` | LALT | SPACE | | MO | SPACE | | LEFT | DOWN | UP | RIGHT | - * '--------------------------------------------------------------------------------------------------------------------' - */ - [0] = LAYOUT_classic( - KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_MINS, KC_EQL, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, - KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_LBRC, KC_RBRC, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS, - KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_HOME, KC_PGUP, 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_END, KC_PGDN, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT, - KC_LGUI, KC_DEL, KC_GRV, KC_LALT, KC_SPC, KC_SPC, MO(1), KC_SPC, KC_SPC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT - ), - - /* Function Layer - * .--------------------------------------------------------------. .--------------------------------------------------------------. - * | | F1 | F2 | F3 | F4 | F5 | | | | F6 | F7 | F8 | F9 | F10 | F11 | - * |--------+--------+--------+--------+--------+--------+--------+ +--------+--------+--------+--------+--------+--------+--------| - * | | | | | | | | | | | | | | PRT SC | F12 | - * |--------+--------+--------+--------+--------+--------+--------+ +--------+--------+--------+--------+--------+--------+--------| - * | | | | | | | | | | | | | | | QK_BOOT | - * |--------+--------+--------+--------+--------+--------+--------+ +--------+--------+--------+--------+--------+--------+--------| - * | | | | | | | | | | | MUTE | VOL DN | VOL UP | | | - * '--------+--------+--------+--------+--------+-----------------+--------+--------+--------+--------+--------+--------+--------+-------' - * | | | | | | | | | | | | - * '--------------------------------------------------------------------------------------------------------------------' - */ - [1] = LAYOUT_classic( - _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, _______, _______, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, - _______, _______, KC_APP, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PSCR, KC_F12, - _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, QK_BOOT, - _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______, - _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ - ), - - [2] = LAYOUT_classic( - _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, - _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, - _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, - _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, - _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ - ), - - [3] = LAYOUT_classic( - _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, - _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, - _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, - _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, - _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ - ) -}; diff --git a/keyboards/boardrun/classic/keymaps/via/rules.mk b/keyboards/boardrun/classic/keymaps/via/rules.mk deleted file mode 100644 index 43061db1dd..0000000000 --- a/keyboards/boardrun/classic/keymaps/via/rules.mk +++ /dev/null @@ -1,2 +0,0 @@ -VIA_ENABLE = yes -LTO_ENABLE = yes
\ No newline at end of file diff --git a/keyboards/boardrun/classic/readme.md b/keyboards/boardrun/classic/readme.md deleted file mode 100644 index eeb2c0d55c..0000000000 --- a/keyboards/boardrun/classic/readme.md +++ /dev/null @@ -1,23 +0,0 @@ -# Boardrun Classic - -![Boardrun Classic](https://i.imgur.com/Efo0ItKl.jpg) - -The Boardrun is a family of ortholinear keyboards with columnar stagger, inspired by the Alice layout. The Classic is a 60% layout that uses Ergodox keycap sets for compatibility, whereas the Bizarre is a 65% layout that uses standard (staggered) keycap sets in an ortholinear arrangement. - -The Boardrun is an evolution of the Boardwalk layout. The Boardwalk proved that the Ergodox keycap set could be adapted to more keyboards that provided a more compact design and layout flexibility. While adaptation was a design goal of the Boardwalk layout, the Boardrun was designed to distill and refine the best aspects of the current state of keyboard layouts, taking into account current trends in staggered design, the Ergodox keycap layout, and the Boardwalk's most popular layouts. To that end, a columnar staggered, ortholinear layout with alpha rotation was settled on, using the "HHKB" layout from the Boardwalk. The result is two layouts that are comfortable, familiar, and have great compatibility with keysets. - -- Keyboard Maintainer: QMK Community -- Hardware Supported: Boardrun Classic Ortholinear PCB -- Hardware Availability: mkultra.click - -Make example for this keyboard (after setting up your build environment): - - make boardrun/classic:default - -Flashing example for this keyboard: - - make boardrun/classic:default:flash - -The board may be reset into bootloader mode via either the reset button (on the bottom of the PCB) or a configured `QK_BOOT` shortcut (which may vary depending on when the PCB was flashed). - -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/boardrun/classic/rules.mk b/keyboards/boardrun/classic/rules.mk deleted file mode 100644 index b5761555d4..0000000000 --- a/keyboards/boardrun/classic/rules.mk +++ /dev/null @@ -1,18 +0,0 @@ -# MCU name -MCU = atmega32u4 - -# 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 = yes # Enable N-Key Rollover -BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality -RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow -AUDIO_ENABLE = no # Audio output |