diff options
| author | QMK Bot <hello@qmk.fm> | 2021-04-20 16:12:25 +0000 |
|---|---|---|
| committer | QMK Bot <hello@qmk.fm> | 2021-04-20 16:12:25 +0000 |
| commit | bc66d71daed0a192d1e64024461bd469bd1e1872 (patch) | |
| tree | f32f096be8fb0b6c95a36463221f82de0f0e6b30 | |
| parent | 427bff8504635da8d40899bf77d111e4c2e14c32 (diff) | |
| parent | 3d37afd495da35e30961969de27190e9e3a4d7e7 (diff) | |
| download | qmk_firmware-bc66d71daed0a192d1e64024461bd469bd1e1872.tar.gz qmk_firmware-bc66d71daed0a192d1e64024461bd469bd1e1872.zip | |
Merge remote-tracking branch 'origin/master' into develop
| -rw-r--r-- | keyboards/xelus/pachi/mini_32u4/config.h | 43 | ||||
| -rw-r--r-- | keyboards/xelus/pachi/mini_32u4/mini_32u4.c | 18 | ||||
| -rw-r--r-- | keyboards/xelus/pachi/mini_32u4/mini_32u4.h | 36 | ||||
| -rw-r--r-- | keyboards/xelus/pachi/mini_32u4/rules.mk | 22 | ||||
| -rw-r--r-- | keyboards/xelus/pachi/pachi.h | 2 | ||||
| -rw-r--r-- | keyboards/xelus/pachi/readme.md | 1 |
6 files changed, 122 insertions, 0 deletions
diff --git a/keyboards/xelus/pachi/mini_32u4/config.h b/keyboards/xelus/pachi/mini_32u4/config.h new file mode 100644 index 000000000..cf15d57cf --- /dev/null +++ b/keyboards/xelus/pachi/mini_32u4/config.h | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | /* Copyright 2021 Harrison Chan (Xelus) | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #pragma once | ||
| 18 | |||
| 19 | /* USB Device descriptor parameter */ | ||
| 20 | #define VENDOR_ID 0x5845 // XE | ||
| 21 | #define PRODUCT_ID 0x5041 // PA | ||
| 22 | #define DEVICE_VER 0x0001 | ||
| 23 | #define MANUFACTURER Xelus | ||
| 24 | #define PRODUCT Xelus Pachi Mini | ||
| 25 | |||
| 26 | /* key matrix size */ | ||
| 27 | #define MATRIX_ROWS 6 | ||
| 28 | #define MATRIX_COLS 17 | ||
| 29 | |||
| 30 | #define MATRIX_ROW_PINS { B0, B1, B2, F0, D2, D1 } | ||
| 31 | #define MATRIX_COL_PINS { F4, F5, F6, F7, C7, C6, B6, B5, B4, D7, D6, D4, D5, D3, E6, B7, D0 } | ||
| 32 | #define DIODE_DIRECTION COL2ROW | ||
| 33 | |||
| 34 | /* Set 0 if debouncing isn't needed */ | ||
| 35 | #define DEBOUNCE 5 | ||
| 36 | |||
| 37 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 38 | #define LOCKING_SUPPORT_ENABLE | ||
| 39 | /* Locking resynchronize hack */ | ||
| 40 | #define LOCKING_RESYNC_ENABLE | ||
| 41 | |||
| 42 | #define LED_CAPS_LOCK_PIN F1 | ||
| 43 | #define LED_SCROLL_LOCK_PIN B3 | ||
diff --git a/keyboards/xelus/pachi/mini_32u4/mini_32u4.c b/keyboards/xelus/pachi/mini_32u4/mini_32u4.c new file mode 100644 index 000000000..98d2a8096 --- /dev/null +++ b/keyboards/xelus/pachi/mini_32u4/mini_32u4.c | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | /* Copyright 2021 Harrison Chan (Xelus) | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include "mini_32u4.h" | ||
| 18 | |||
diff --git a/keyboards/xelus/pachi/mini_32u4/mini_32u4.h b/keyboards/xelus/pachi/mini_32u4/mini_32u4.h new file mode 100644 index 000000000..a63062b96 --- /dev/null +++ b/keyboards/xelus/pachi/mini_32u4/mini_32u4.h | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | /* Copyright 2020 Harrison Chan (Xelus) | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #pragma once | ||
| 17 | |||
| 18 | #include "quantum.h" | ||
| 19 | |||
| 20 | #define ____ KC_NO | ||
| 21 | |||
| 22 | #define LAYOUT_all( \ | ||
| 23 | K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014, K015, K016, \ | ||
| 24 | K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K313, K114, K115, K116, \ | ||
| 25 | K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, K214, K215, K216, \ | ||
| 26 | K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, \ | ||
| 27 | K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K412, K413, K415, \ | ||
| 28 | K500, K501, K502, K506, K510, K511, K512, K513, K514, K515, K516 \ | ||
| 29 | ) { \ | ||
| 30 | { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014, K015, K016 }, \ | ||
| 31 | { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K114, K115, K116 }, \ | ||
| 32 | { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, K214, K215, K216 }, \ | ||
| 33 | { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K313, ____, ____, ____ }, \ | ||
| 34 | { K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K412, K413, ____, K415, ____ }, \ | ||
| 35 | { K500, K501, K502, ____, ____, ____, K506, ____, ____, ____, K510, K511, K512, K513, K514, K515, K516 } \ | ||
| 36 | } | ||
diff --git a/keyboards/xelus/pachi/mini_32u4/rules.mk b/keyboards/xelus/pachi/mini_32u4/rules.mk new file mode 100644 index 000000000..32981133b --- /dev/null +++ b/keyboards/xelus/pachi/mini_32u4/rules.mk | |||
| @@ -0,0 +1,22 @@ | |||
| 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 = no # Enable keyboard RGB underglow | ||
| 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
| 22 | AUDIO_ENABLE = no # Audio output | ||
diff --git a/keyboards/xelus/pachi/pachi.h b/keyboards/xelus/pachi/pachi.h index d4d9a5933..7f33f2c08 100644 --- a/keyboards/xelus/pachi/pachi.h +++ b/keyboards/xelus/pachi/pachi.h | |||
| @@ -20,4 +20,6 @@ | |||
| 20 | 20 | ||
| 21 | #if defined(KEYBOARD_xelus_pachi_rev1) | 21 | #if defined(KEYBOARD_xelus_pachi_rev1) |
| 22 | #include "rev1.h" | 22 | #include "rev1.h" |
| 23 | #elif defined(KEYBOARD_xelus_pachi_mini_32u4) | ||
| 24 | #include "mini_32u4.h" | ||
| 23 | #endif | 25 | #endif |
diff --git a/keyboards/xelus/pachi/readme.md b/keyboards/xelus/pachi/readme.md index 10c07078b..537a2c689 100644 --- a/keyboards/xelus/pachi/readme.md +++ b/keyboards/xelus/pachi/readme.md | |||
| @@ -8,5 +8,6 @@ Pachi TKL Keyboard that supports both 87 and 88 layouts. | |||
| 8 | Make example for this keyboard (after setting up your build environment): | 8 | Make example for this keyboard (after setting up your build environment): |
| 9 | 9 | ||
| 10 | make xelus/pachi/rev1:default | 10 | make xelus/pachi/rev1:default |
| 11 | make xelus/pachi/mini_32u4:default | ||
| 11 | 12 | ||
| 12 | 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). | 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). |
