diff options
| author | Quentin <qlebastard@gmail.com> | 2021-02-12 03:33:50 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-11 18:33:50 -0800 |
| commit | 550359a4b4510890bc0e3c4adddb3fd5d07a798b (patch) | |
| tree | 485cc8c6202f664d62ee3d0dacc8453996b37735 | |
| parent | bc74027f3920c244ea3524e755dba66b0dd2fb8c (diff) | |
| download | qmk_firmware-550359a4b4510890bc0e3c4adddb3fd5d07a798b.tar.gz qmk_firmware-550359a4b4510890bc0e3c4adddb3fd5d07a798b.zip | |
[Keyboard] Add bastyl mini keyboard (#11782)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Co-authored-by: NullSense <matas234@gmail.com>
| -rw-r--r-- | keyboards/bastardkb/bastylmini/bastylmini.c | 18 | ||||
| -rw-r--r-- | keyboards/bastardkb/bastylmini/bastylmini.h | 37 | ||||
| -rw-r--r-- | keyboards/bastardkb/bastylmini/config.h | 47 | ||||
| -rw-r--r-- | keyboards/bastardkb/bastylmini/info.json | 55 | ||||
| -rw-r--r-- | keyboards/bastardkb/bastylmini/keymaps/default/keymap.c | 70 | ||||
| -rw-r--r-- | keyboards/bastardkb/bastylmini/readme.md | 15 | ||||
| -rw-r--r-- | keyboards/bastardkb/bastylmini/rules.mk | 31 |
7 files changed, 273 insertions, 0 deletions
diff --git a/keyboards/bastardkb/bastylmini/bastylmini.c b/keyboards/bastardkb/bastylmini/bastylmini.c new file mode 100644 index 000000000..634b0b4a9 --- /dev/null +++ b/keyboards/bastardkb/bastylmini/bastylmini.c | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | /* | ||
| 2 | * Copyright 2021 Quentin LEBASTARD <qlebastard@gmail.com> | ||
| 3 | * | ||
| 4 | * This program is free software: you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation, either version 2 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #include "bastylmini.h" | ||
diff --git a/keyboards/bastardkb/bastylmini/bastylmini.h b/keyboards/bastardkb/bastylmini/bastylmini.h new file mode 100644 index 000000000..66235f4f4 --- /dev/null +++ b/keyboards/bastardkb/bastylmini/bastylmini.h | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | /* | ||
| 2 | * Copyright 2021 Quentin LEBASTARD <qlebastard@gmail.com> | ||
| 3 | * | ||
| 4 | * This program is free software: you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation, either version 2 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | |||
| 19 | #pragma once | ||
| 20 | #include "quantum.h" | ||
| 21 | |||
| 22 | #define LAYOUT_split_3x6_3( \ | ||
| 23 | k00, k01, k02, k03, k04, k05, k45, k44, k43, k42, k41, k40, \ | ||
| 24 | k10, k11, k12, k13, k14, k15, k55, k54, k53, k52, k51, k50, \ | ||
| 25 | k20, k21, k22, k23, k24, k25, k65, k64, k63, k62, k61, k60, \ | ||
| 26 | k33, k34, k31, k71, k74, k73 \ | ||
| 27 | )\ | ||
| 28 | {\ | ||
| 29 | { k00, k01, k02, k03, k04, k05 }, \ | ||
| 30 | { k10, k11, k12, k13, k14, k15 }, \ | ||
| 31 | { k20, k21, k22, k23, k24, k25 }, \ | ||
| 32 | { KC_NO, k31, KC_NO, k33, k34, KC_NO }, \ | ||
| 33 | { k40, k41, k42, k43, k44, k45 }, \ | ||
| 34 | { k50, k51, k52, k53, k54, k55 }, \ | ||
| 35 | { k60, k61, k62, k63, k64, k65 }, \ | ||
| 36 | { KC_NO, k71, KC_NO, k73, k74, KC_NO }, \ | ||
| 37 | } | ||
diff --git a/keyboards/bastardkb/bastylmini/config.h b/keyboards/bastardkb/bastylmini/config.h new file mode 100644 index 000000000..b23f64a09 --- /dev/null +++ b/keyboards/bastardkb/bastylmini/config.h | |||
| @@ -0,0 +1,47 @@ | |||
| 1 | /* | ||
| 2 | * Copyright 2021 Quentin LEBASTARD <qlebastard@gmail.com> | ||
| 3 | * | ||
| 4 | * This program is free software: you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation, either version 2 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #pragma once | ||
| 19 | #include "config_common.h" | ||
| 20 | #define VENDOR_ID 0xA8F8 | ||
| 21 | #define PRODUCT_ID 0x1828 | ||
| 22 | #define DEVICE_VER 0x0001 | ||
| 23 | #define MANUFACTURER Bastard Keyboards | ||
| 24 | #define PRODUCT Bastyl Mini | ||
| 25 | |||
| 26 | #define MATRIX_ROWS 8 | ||
| 27 | #define MATRIX_COLS 6 | ||
| 28 | #define RGBLIGHT_LIMIT_VAL 180 | ||
| 29 | #define MATRIX_ROW_PINS { B5, F7, F6, B6 } | ||
| 30 | #define MATRIX_COL_PINS { B4, E6, C6, B1, B3, B2 } | ||
| 31 | |||
| 32 | #define DIODE_DIRECTION ROW2COL | ||
| 33 | |||
| 34 | #define RGB_DI_PIN D2 | ||
| 35 | #define RGBLED_NUM 42 | ||
| 36 | #define RGBLED_SPLIT { 21, 21 } | ||
| 37 | #define RGBLIGHT_ANIMATIONS | ||
| 38 | |||
| 39 | #define DEBOUNCE 5 | ||
| 40 | |||
| 41 | #define SOFT_SERIAL_PIN D0 | ||
| 42 | |||
| 43 | #define LOCKING_SUPPORT_ENABLE | ||
| 44 | #define LOCKING_RESYNC_ENABLE | ||
| 45 | #define F_SCL 400000L | ||
| 46 | #define USB_POLLING_INTERVAL_MS 1 | ||
| 47 | #define MASTER_RIGHT | ||
diff --git a/keyboards/bastardkb/bastylmini/info.json b/keyboards/bastardkb/bastylmini/info.json new file mode 100644 index 000000000..a30a2f8cd --- /dev/null +++ b/keyboards/bastardkb/bastylmini/info.json | |||
| @@ -0,0 +1,55 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "Bastyl Mini", | ||
| 3 | "url": "https://www.bastardkb.com", | ||
| 4 | "maintainer": "Quentin Lebastard", | ||
| 5 | "width": 17, | ||
| 6 | "height": 4, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_split_3x6_3": { | ||
| 9 | "layout": [ | ||
| 10 | {"label":"L00", "x":0, "y":0}, | ||
| 11 | {"label":"L01", "x":1, "y":0}, | ||
| 12 | {"label":"L02", "x":2, "y":0}, | ||
| 13 | {"label":"L03", "x":3, "y":0}, | ||
| 14 | {"label":"L04", "x":4, "y":0}, | ||
| 15 | {"label":"L05", "x":5, "y":0}, | ||
| 16 | {"label":"R00", "x":11, "y":0}, | ||
| 17 | {"label":"R01", "x":12, "y":0}, | ||
| 18 | {"label":"R02", "x":13, "y":0}, | ||
| 19 | {"label":"R03", "x":14, "y":0}, | ||
| 20 | {"label":"R04", "x":15, "y":0}, | ||
| 21 | {"label":"R05", "x":16, "y":0}, | ||
| 22 | {"label":"L10", "x":0, "y":1}, | ||
| 23 | {"label":"L11", "x":1, "y":1}, | ||
| 24 | {"label":"L12", "x":2, "y":1}, | ||
| 25 | {"label":"L13", "x":3, "y":1}, | ||
| 26 | {"label":"L14", "x":4, "y":1}, | ||
| 27 | {"label":"L15", "x":5, "y":1}, | ||
| 28 | {"label":"R10", "x":11, "y":1}, | ||
| 29 | {"label":"R11", "x":12, "y":1}, | ||
| 30 | {"label":"R12", "x":13, "y":1}, | ||
| 31 | {"label":"R13", "x":14, "y":1}, | ||
| 32 | {"label":"R14", "x":15, "y":1}, | ||
| 33 | {"label":"R15", "x":16, "y":1}, | ||
| 34 | {"label":"L20", "x":0, "y":2}, | ||
| 35 | {"label":"L21", "x":1, "y":2}, | ||
| 36 | {"label":"L22", "x":2, "y":2}, | ||
| 37 | {"label":"L23", "x":3, "y":2}, | ||
| 38 | {"label":"L24", "x":4, "y":2}, | ||
| 39 | {"label":"L25", "x":5, "y":2}, | ||
| 40 | {"label":"R20", "x":11, "y":2}, | ||
| 41 | {"label":"R21", "x":12, "y":2}, | ||
| 42 | {"label":"R22", "x":13, "y":2}, | ||
| 43 | {"label":"R23", "x":14, "y":2}, | ||
| 44 | {"label":"R24", "x":15, "y":2}, | ||
| 45 | {"label":"R25", "x":16, "y":2}, | ||
| 46 | {"label":"L33", "x":5, "y":3}, | ||
| 47 | {"label":"L34", "x":6, "y":3}, | ||
| 48 | {"label":"L31", "x":7, "y":3}, | ||
| 49 | {"label":"R33", "x":9, "y":3}, | ||
| 50 | {"label":"R34", "x":10, "y":3}, | ||
| 51 | {"label":"R31", "x":11, "y":3} | ||
| 52 | ] | ||
| 53 | } | ||
| 54 | } | ||
| 55 | } | ||
diff --git a/keyboards/bastardkb/bastylmini/keymaps/default/keymap.c b/keyboards/bastardkb/bastylmini/keymaps/default/keymap.c new file mode 100644 index 000000000..8006f11ce --- /dev/null +++ b/keyboards/bastardkb/bastylmini/keymaps/default/keymap.c | |||
| @@ -0,0 +1,70 @@ | |||
| 1 | /* | ||
| 2 | * Copyright 2021 Quentin LEBASTARD <qlebastard@gmail.com> | ||
| 3 | * | ||
| 4 | * This program is free software: you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation, either version 2 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #include QMK_KEYBOARD_H | ||
| 19 | |||
| 20 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 21 | |||
| 22 | [0] = LAYOUT_split_3x6_3( | ||
| 23 | //,-----------------------------------------------------. ,-----------------------------------------------------. | ||
| 24 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, | ||
| 25 | //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------| | ||
| 26 | KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, | ||
| 27 | //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------| | ||
| 28 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ESC, | ||
| 29 | //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------| | ||
| 30 | KC_LGUI, KC_SPC , MO(1), MO(2), KC_ENT , KC_RALT | ||
| 31 | //`--------------------------' `--------------------------' | ||
| 32 | |||
| 33 | ), | ||
| 34 | |||
| 35 | [1] = LAYOUT_split_3x6_3( | ||
| 36 | //,-----------------------------------------------------. ,-----------------------------------------------------. | ||
| 37 | KC_TAB, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, | ||
| 38 | //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------| | ||
| 39 | KC_LCTL, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP,KC_RIGHT, XXXXXXX, XXXXXXX, | ||
| 40 | //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------| | ||
| 41 | KC_LSFT, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 42 | //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------| | ||
| 43 | KC_LGUI, KC_SPC, _______, MO(3), KC_ENT, KC_RALT | ||
| 44 | //`--------------------------' `--------------------------' | ||
| 45 | ), | ||
| 46 | |||
| 47 | [2] = LAYOUT_split_3x6_3( | ||
| 48 | //,-----------------------------------------------------. ,-----------------------------------------------------. | ||
| 49 | KC_TAB, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC, | ||
| 50 | //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------| | ||
| 51 | KC_LCTL, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS, KC_GRV, | ||
| 52 | //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------| | ||
| 53 | KC_LSFT, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE, KC_TILD, | ||
| 54 | //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------| | ||
| 55 | KC_LGUI, KC_SPC, MO(3), _______, KC_ENT, KC_RALT | ||
| 56 | //`--------------------------' `--------------------------' | ||
| 57 | ), | ||
| 58 | |||
| 59 | [3] = LAYOUT_split_3x6_3( | ||
| 60 | //,-----------------------------------------------------. ,-----------------------------------------------------. | ||
| 61 | RESET, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 62 | //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------| | ||
| 63 | RGB_TOG, RGB_HUI, RGB_SAI, RGB_VAI, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 64 | //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------| | ||
| 65 | RGB_MOD, RGB_HUD, RGB_SAD, RGB_VAD, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, | ||
| 66 | //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------| | ||
| 67 | KC_LGUI, KC_SPC, _______, _______, KC_ENT, KC_RALT | ||
| 68 | //`--------------------------' `--------------------------' | ||
| 69 | ) | ||
| 70 | }; | ||
diff --git a/keyboards/bastardkb/bastylmini/readme.md b/keyboards/bastardkb/bastylmini/readme.md new file mode 100644 index 000000000..487e5cc64 --- /dev/null +++ b/keyboards/bastardkb/bastylmini/readme.md | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | # Bastyl Mini | ||
| 2 | |||
| 3 | A split, compact ergonomic keyboard. | ||
| 4 | |||
| 5 | * Keyboard Maintainer: [BastardKb](https://github.com/Bastardkb/) | ||
| 6 | * Hardware Supported: elite-C V4 | ||
| 7 | * Hardware Availability: [Bastardkb.com](https://bastardkb.com/) | ||
| 8 | |||
| 9 | Make example for this keyboard (after setting up your build environment): | ||
| 10 | |||
| 11 | make bastardkb/bastylmini:default | ||
| 12 | |||
| 13 | 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). | ||
| 14 | |||
| 15 | See the [keyboard build instructions](http://docs.bastardkb.com/) \ No newline at end of file | ||
diff --git a/keyboards/bastardkb/bastylmini/rules.mk b/keyboards/bastardkb/bastylmini/rules.mk new file mode 100644 index 000000000..76f9cf11a --- /dev/null +++ b/keyboards/bastardkb/bastylmini/rules.mk | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | BOOTLOADER = atmel-dfu | ||
| 6 | |||
| 7 | # Build Options | ||
| 8 | # change yes to no to disable | ||
| 9 | # | ||
| 10 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
| 11 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
| 12 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 13 | CONSOLE_ENABLE = no # Console for debug | ||
| 14 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 15 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 16 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 17 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 18 | NKRO_ENABLE = yes # USB Nkey Rollover | ||
| 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | ||
| 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
| 22 | AUDIO_ENABLE = no # Audio output | ||
| 23 | SPLIT_KEYBOARD = yes | ||
| 24 | TAP_DANCE_ENABLE = no | ||
| 25 | LTO_ENABLE = yes | ||
| 26 | |||
| 27 | AUDIO_SUPPORTED = no | ||
| 28 | RGB_MATRIX_SUPPORTED = no | ||
| 29 | RGBLIGHT_SUPPORTED = yes | ||
| 30 | |||
| 31 | LAYOUTS = split_3x6_3 | ||
