diff options
| author | Joel Challis <git@zvecr.com> | 2021-04-20 16:17:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-20 16:17:47 +0100 |
| commit | f778ede8bd2c175a5f4a119d9321740d16047dcf (patch) | |
| tree | e90153da2308de5202ff8de63c590397c922da13 /keyboards | |
| parent | 8405d28670c7c8235d0bc4f48b8ab63e472e128e (diff) | |
| download | qmk_firmware-f778ede8bd2c175a5f4a119d9321740d16047dcf.tar.gz qmk_firmware-f778ede8bd2c175a5f4a119d9321740d16047dcf.zip | |
Initial firmware for Forever65 (#12572)
Diffstat (limited to 'keyboards')
| -rw-r--r-- | keyboards/forever65/config.h | 71 | ||||
| -rw-r--r-- | keyboards/forever65/forever65.c | 16 | ||||
| -rw-r--r-- | keyboards/forever65/forever65.h | 18 | ||||
| -rw-r--r-- | keyboards/forever65/info.json | 169 | ||||
| -rw-r--r-- | keyboards/forever65/keymaps/default/keymap.c | 27 | ||||
| -rw-r--r-- | keyboards/forever65/keymaps/via/keymap.c | 48 | ||||
| -rw-r--r-- | keyboards/forever65/keymaps/via/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/forever65/readme.md | 15 | ||||
| -rw-r--r-- | keyboards/forever65/rules.mk | 1 |
9 files changed, 366 insertions, 0 deletions
diff --git a/keyboards/forever65/config.h b/keyboards/forever65/config.h new file mode 100644 index 000000000..4ea906b5a --- /dev/null +++ b/keyboards/forever65/config.h | |||
| @@ -0,0 +1,71 @@ | |||
| 1 | /* Copyright 2021 zvecr<git@zvecr.com> | ||
| 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 "config_common.h" | ||
| 19 | |||
| 20 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 21 | #define LOCKING_SUPPORT_ENABLE | ||
| 22 | /* Locking resynchronize hack */ | ||
| 23 | #define LOCKING_RESYNC_ENABLE | ||
| 24 | |||
| 25 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
| 26 | * This is useful for the Windows task manager shortcut (ctrl+shift+esc). | ||
| 27 | */ | ||
| 28 | //#define GRAVE_ESC_CTRL_OVERRIDE | ||
| 29 | |||
| 30 | /* | ||
| 31 | * Force NKRO | ||
| 32 | * | ||
| 33 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
| 34 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
| 35 | * makefile for this to work.) | ||
| 36 | * | ||
| 37 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
| 38 | * until the next keyboard reset. | ||
| 39 | * | ||
| 40 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
| 41 | * fully operational during normal computer usage. | ||
| 42 | * | ||
| 43 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
| 44 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
| 45 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
| 46 | * power-up. | ||
| 47 | * | ||
| 48 | */ | ||
| 49 | //#define FORCE_NKRO | ||
| 50 | |||
| 51 | /* | ||
| 52 | * Feature disable options | ||
| 53 | * These options are also useful to firmware size reduction. | ||
| 54 | */ | ||
| 55 | |||
| 56 | /* disable debug print */ | ||
| 57 | //#define NO_DEBUG | ||
| 58 | |||
| 59 | /* disable print */ | ||
| 60 | //#define NO_PRINT | ||
| 61 | |||
| 62 | /* disable action features */ | ||
| 63 | //#define NO_ACTION_LAYER | ||
| 64 | //#define NO_ACTION_TAPPING | ||
| 65 | //#define NO_ACTION_ONESHOT | ||
| 66 | |||
| 67 | /* disable these deprecated features by default */ | ||
| 68 | #define NO_ACTION_MACRO | ||
| 69 | #define NO_ACTION_FUNCTION | ||
| 70 | |||
| 71 | #define EARLY_INIT_PERFORM_BOOTLOADER_JUMP TRUE | ||
diff --git a/keyboards/forever65/forever65.c b/keyboards/forever65/forever65.c new file mode 100644 index 000000000..940f3300f --- /dev/null +++ b/keyboards/forever65/forever65.c | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | /* Copyright 2021 zvecr<git@zvecr.com> | ||
| 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 | #include "forever65.h" | ||
diff --git a/keyboards/forever65/forever65.h b/keyboards/forever65/forever65.h new file mode 100644 index 000000000..0edfd0b45 --- /dev/null +++ b/keyboards/forever65/forever65.h | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | /* Copyright 2021 zvecr<git@zvecr.com> | ||
| 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" \ No newline at end of file | ||
diff --git a/keyboards/forever65/info.json b/keyboards/forever65/info.json new file mode 100644 index 000000000..3615a3931 --- /dev/null +++ b/keyboards/forever65/info.json | |||
| @@ -0,0 +1,169 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "forever65", | ||
| 3 | "manufacturer": "Nightingale Studios", | ||
| 4 | "maintainer": "zvecr", | ||
| 5 | "processor": "STM32F072", | ||
| 6 | "diode_direction": "COL2ROW", | ||
| 7 | "matrix_pins": { | ||
| 8 | "cols": ["A3", "F1", "F0", "C15", "C14", "C13", "B11", "B10", "B2", "B1", "B0", "A7", "A5", "A6", "A4", "B5"], | ||
| 9 | "rows": ["B15", "B14", "B13", "B12", "B6"] | ||
| 10 | }, | ||
| 11 | "usb": { | ||
| 12 | "vid": "0x4E53", | ||
| 13 | "pid": "0x0F65", | ||
| 14 | "device_ver": "0x0001" | ||
| 15 | }, | ||
| 16 | "features": { | ||
| 17 | "bootmagic_lite": true, | ||
| 18 | "command": false, | ||
| 19 | "console": false, | ||
| 20 | "extrakey": true, | ||
| 21 | "mousekey": true, | ||
| 22 | "nkro": true | ||
| 23 | }, | ||
| 24 | "width": 16, | ||
| 25 | "height": 5, | ||
| 26 | "layouts": { | ||
| 27 | "LAYOUT": { | ||
| 28 | "layout": [ | ||
| 29 | { "matrix": [0, 0], "label": "Esc", "x": 0, "y": 0 }, | ||
| 30 | { "matrix": [0, 1], "label": "!", "x": 1, "y": 0 }, | ||
| 31 | { "matrix": [0, 2], "label": "@", "x": 2, "y": 0 }, | ||
| 32 | { "matrix": [0, 3], "label": "#", "x": 3, "y": 0 }, | ||
| 33 | { "matrix": [0, 4], "label": "$", "x": 4, "y": 0 }, | ||
| 34 | { "matrix": [0, 5], "label": "%", "x": 5, "y": 0 }, | ||
| 35 | { "matrix": [0, 6], "label": "^", "x": 6, "y": 0 }, | ||
| 36 | { "matrix": [0, 7], "label": "&", "x": 7, "y": 0 }, | ||
| 37 | { "matrix": [0, 8], "label": "*", "x": 8, "y": 0 }, | ||
| 38 | { "matrix": [0, 9], "label": "(", "x": 9, "y": 0 }, | ||
| 39 | { "matrix": [0, 10], "label": ")", "x": 10, "y": 0 }, | ||
| 40 | { "matrix": [0, 11], "label": "_", "x": 11, "y": 0 }, | ||
| 41 | { "matrix": [0, 12], "label": "+", "x": 12, "y": 0 }, | ||
| 42 | { "matrix": [0, 13], "label": "Backspace", "w": 2, "x": 13, "y": 0 }, | ||
| 43 | { "matrix": [1, 0], "label": "Tab", "w": 1.5, "x": 0, "y": 1 }, | ||
| 44 | { "matrix": [1, 1], "label": "Q", "x": 1.5, "y": 1 }, | ||
| 45 | { "matrix": [1, 2], "label": "W", "x": 2.5, "y": 1 }, | ||
| 46 | { "matrix": [1, 3], "label": "E", "x": 3.5, "y": 1 }, | ||
| 47 | { "matrix": [1, 4], "label": "R", "x": 4.5, "y": 1 }, | ||
| 48 | { "matrix": [1, 5], "label": "T", "x": 5.5, "y": 1 }, | ||
| 49 | { "matrix": [1, 6], "label": "Y", "x": 6.5, "y": 1 }, | ||
| 50 | { "matrix": [1, 7], "label": "U", "x": 7.5, "y": 1 }, | ||
| 51 | { "matrix": [1, 8], "label": "I", "x": 8.5, "y": 1 }, | ||
| 52 | { "matrix": [1, 9], "label": "O", "x": 9.5, "y": 1 }, | ||
| 53 | { "matrix": [1, 10], "label": "P", "x": 10.5, "y": 1 }, | ||
| 54 | { "matrix": [1, 11], "label": "{", "x": 11.5, "y": 1 }, | ||
| 55 | { "matrix": [1, 12], "label": "}", "x": 12.5, "y": 1 }, | ||
| 56 | { "matrix": [1, 13], "label": "|", "w": 1.5, "x": 13.5, "y": 1 }, | ||
| 57 | { "matrix": [1, 15], "label": "Delete", "x": 15, "y": 1 }, | ||
| 58 | { "matrix": [2, 0], "label": "Caps Lock", "w": 1.75, "x": 0, "y": 2 }, | ||
| 59 | { "matrix": [2, 1], "label": "A", "x": 1.75, "y": 2 }, | ||
| 60 | { "matrix": [2, 2], "label": "S", "x": 2.75, "y": 2 }, | ||
| 61 | { "matrix": [2, 3], "label": "D", "x": 3.75, "y": 2 }, | ||
| 62 | { "matrix": [2, 4], "label": "F", "x": 4.75, "y": 2 }, | ||
| 63 | { "matrix": [2, 5], "label": "G", "x": 5.75, "y": 2 }, | ||
| 64 | { "matrix": [2, 6], "label": "H", "x": 6.75, "y": 2 }, | ||
| 65 | { "matrix": [2, 7], "label": "J", "x": 7.75, "y": 2 }, | ||
| 66 | { "matrix": [2, 8], "label": "K", "x": 8.75, "y": 2 }, | ||
| 67 | { "matrix": [2, 9], "label": "L", "x": 9.75, "y": 2 }, | ||
| 68 | { "matrix": [2, 10], "label": ":", "x": 10.75, "y": 2 }, | ||
| 69 | { "matrix": [2, 11], "label": "\"", "x": 11.75, "y": 2 }, | ||
| 70 | { "matrix": [2, 12], "label": "Enter", "w": 2.25, "x": 12.75, "y": 2 }, | ||
| 71 | { "matrix": [2, 15], "label": "PgUp", "x": 15, "y": 2 }, | ||
| 72 | { "matrix": [3, 0], "label": "Shift", "w": 2.25, "x": 0, "y": 3 }, | ||
| 73 | { "matrix": [3, 1], "label": "Z", "x": 2.25, "y": 3 }, | ||
| 74 | { "matrix": [3, 2], "label": "X", "x": 3.25, "y": 3 }, | ||
| 75 | { "matrix": [3, 3], "label": "C", "x": 4.25, "y": 3 }, | ||
| 76 | { "matrix": [3, 4], "label": "V", "x": 5.25, "y": 3 }, | ||
| 77 | { "matrix": [3, 5], "label": "B", "x": 6.25, "y": 3 }, | ||
| 78 | { "matrix": [3, 6], "label": "N", "x": 7.25, "y": 3 }, | ||
| 79 | { "matrix": [3, 7], "label": "M", "x": 8.25, "y": 3 }, | ||
| 80 | { "matrix": [3, 8], "label": "<", "x": 9.25, "y": 3 }, | ||
| 81 | { "matrix": [3, 9], "label": ">", "x": 10.25, "y": 3 }, | ||
| 82 | { "matrix": [3, 10], "label": "?", "x": 11.25, "y": 3 }, | ||
| 83 | { "matrix": [3, 11], "label": "Shift", "w": 1.75, "x": 12.25, "y": 3 }, | ||
| 84 | { "matrix": [3, 13], "label": "Up", "x": 14, "y": 3 }, | ||
| 85 | { "matrix": [3, 15], "label": "PgDn", "x": 15, "y": 3 }, | ||
| 86 | { "matrix": [4, 0], "label": "Ctrl", "w": 1.25, "x": 0, "y": 4 }, | ||
| 87 | { "matrix": [4, 1], "label": "Win", "w": 1.25, "x": 1.25, "y": 4 }, | ||
| 88 | { "matrix": [4, 2], "label": "Alt", "w": 1.25, "x": 2.5, "y": 4 }, | ||
| 89 | { "matrix": [4, 4], "w": 6.25, "x": 3.75, "y": 4 }, | ||
| 90 | { "matrix": [4, 9], "label": "Alt", "w": 1.25, "x": 10, "y": 4 }, | ||
| 91 | { "matrix": [4, 10], "label": "Ctrl", "w": 1.25, "x": 11.25, "y": 4 }, | ||
| 92 | { "matrix": [4, 11], "label": "Left", "x": 13, "y": 4 }, | ||
| 93 | { "matrix": [4, 13], "label": "Down", "x": 14, "y": 4 }, | ||
| 94 | { "matrix": [4, 15], "label": "Right", "x": 15, "y": 4 } | ||
| 95 | ] | ||
| 96 | }, | ||
| 97 | "LAYOUT_all": { | ||
| 98 | "layout": [ | ||
| 99 | { "matrix": [0, 0], "label": "Esc", "x": 0, "y": 0 }, | ||
| 100 | { "matrix": [0, 1], "label": "!", "x": 1, "y": 0 }, | ||
| 101 | { "matrix": [0, 2], "label": "@", "x": 2, "y": 0 }, | ||
| 102 | { "matrix": [0, 3], "label": "#", "x": 3, "y": 0 }, | ||
| 103 | { "matrix": [0, 4], "label": "$", "x": 4, "y": 0 }, | ||
| 104 | { "matrix": [0, 5], "label": "%", "x": 5, "y": 0 }, | ||
| 105 | { "matrix": [0, 6], "label": "^", "x": 6, "y": 0 }, | ||
| 106 | { "matrix": [0, 7], "label": "&", "x": 7, "y": 0 }, | ||
| 107 | { "matrix": [0, 8], "label": "*", "x": 8, "y": 0 }, | ||
| 108 | { "matrix": [0, 9], "label": "(", "x": 9, "y": 0 }, | ||
| 109 | { "matrix": [0, 10], "label": ")", "x": 10, "y": 0 }, | ||
| 110 | { "matrix": [0, 11], "label": "_", "x": 11, "y": 0 }, | ||
| 111 | { "matrix": [0, 12], "label": "+", "x": 12, "y": 0 }, | ||
| 112 | { "matrix": [0, 13], "label": "Backspace", "x": 13, "y": 0 }, | ||
| 113 | { "matrix": [0, 14], "label": "Backspace", "x": 14, "y": 0 }, | ||
| 114 | { "matrix": [1, 0], "label": "Tab", "w": 1.5, "x": 0, "y": 1 }, | ||
| 115 | { "matrix": [1, 1], "label": "Q", "x": 1.5, "y": 1 }, | ||
| 116 | { "matrix": [1, 2], "label": "W", "x": 2.5, "y": 1 }, | ||
| 117 | { "matrix": [1, 3], "label": "E", "x": 3.5, "y": 1 }, | ||
| 118 | { "matrix": [1, 4], "label": "R", "x": 4.5, "y": 1 }, | ||
| 119 | { "matrix": [1, 5], "label": "T", "x": 5.5, "y": 1 }, | ||
| 120 | { "matrix": [1, 6], "label": "Y", "x": 6.5, "y": 1 }, | ||
| 121 | { "matrix": [1, 7], "label": "U", "x": 7.5, "y": 1 }, | ||
| 122 | { "matrix": [1, 8], "label": "I", "x": 8.5, "y": 1 }, | ||
| 123 | { "matrix": [1, 9], "label": "O", "x": 9.5, "y": 1 }, | ||
| 124 | { "matrix": [1, 10], "label": "P", "x": 10.5, "y": 1 }, | ||
| 125 | { "matrix": [1, 11], "label": "{", "x": 11.5, "y": 1 }, | ||
| 126 | { "matrix": [1, 12], "label": "}", "x": 12.5, "y": 1 }, | ||
| 127 | { "matrix": [1, 13], "label": "|", "w": 1.5, "x": 13.5, "y": 1 }, | ||
| 128 | { "matrix": [1, 15], "label": "Delete", "x": 15, "y": 1 }, | ||
| 129 | { "matrix": [2, 0], "label": "Caps Lock", "w": 1.75, "x": 0, "y": 2 }, | ||
| 130 | { "matrix": [2, 1], "label": "A", "x": 1.75, "y": 2 }, | ||
| 131 | { "matrix": [2, 2], "label": "S", "x": 2.75, "y": 2 }, | ||
| 132 | { "matrix": [2, 3], "label": "D", "x": 3.75, "y": 2 }, | ||
| 133 | { "matrix": [2, 4], "label": "F", "x": 4.75, "y": 2 }, | ||
| 134 | { "matrix": [2, 5], "label": "G", "x": 5.75, "y": 2 }, | ||
| 135 | { "matrix": [2, 6], "label": "H", "x": 6.75, "y": 2 }, | ||
| 136 | { "matrix": [2, 7], "label": "J", "x": 7.75, "y": 2 }, | ||
| 137 | { "matrix": [2, 8], "label": "K", "x": 8.75, "y": 2 }, | ||
| 138 | { "matrix": [2, 9], "label": "L", "x": 9.75, "y": 2 }, | ||
| 139 | { "matrix": [2, 10], "label": ":", "x": 10.75, "y": 2 }, | ||
| 140 | { "matrix": [2, 11], "label": "\"", "x": 11.75, "y": 2 }, | ||
| 141 | { "matrix": [2, 12], "label": "Enter", "w": 2.25, "x": 12.75, "y": 2 }, | ||
| 142 | { "matrix": [2, 15], "label": "PgUp", "x": 15, "y": 2 }, | ||
| 143 | { "matrix": [3, 0], "label": "Shift", "w": 2.25, "x": 0, "y": 3 }, | ||
| 144 | { "matrix": [3, 1], "label": "Z", "x": 2.25, "y": 3 }, | ||
| 145 | { "matrix": [3, 2], "label": "X", "x": 3.25, "y": 3 }, | ||
| 146 | { "matrix": [3, 3], "label": "C", "x": 4.25, "y": 3 }, | ||
| 147 | { "matrix": [3, 4], "label": "V", "x": 5.25, "y": 3 }, | ||
| 148 | { "matrix": [3, 5], "label": "B", "x": 6.25, "y": 3 }, | ||
| 149 | { "matrix": [3, 6], "label": "N", "x": 7.25, "y": 3 }, | ||
| 150 | { "matrix": [3, 7], "label": "M", "x": 8.25, "y": 3 }, | ||
| 151 | { "matrix": [3, 8], "label": "<", "x": 9.25, "y": 3 }, | ||
| 152 | { "matrix": [3, 9], "label": ">", "x": 10.25, "y": 3 }, | ||
| 153 | { "matrix": [3, 10], "label": "?", "x": 11.25, "y": 3 }, | ||
| 154 | { "matrix": [3, 11], "label": "Shift", "w": 1.75, "x": 12.25, "y": 3 }, | ||
| 155 | { "matrix": [3, 13], "label": "Up", "x": 14, "y": 3 }, | ||
| 156 | { "matrix": [3, 15], "label": "PgDn", "x": 15, "y": 3 }, | ||
| 157 | { "matrix": [4, 0], "label": "Ctrl", "w": 1.25, "x": 0, "y": 4 }, | ||
| 158 | { "matrix": [4, 1], "label": "Win", "w": 1.25, "x": 1.25, "y": 4 }, | ||
| 159 | { "matrix": [4, 2], "label": "Alt", "w": 1.25, "x": 2.5, "y": 4 }, | ||
| 160 | { "matrix": [4, 4], "w": 6.25, "x": 3.75, "y": 4 }, | ||
| 161 | { "matrix": [4, 9], "label": "Alt", "w": 1.25, "x": 10, "y": 4 }, | ||
| 162 | { "matrix": [4, 10], "label": "Ctrl", "w": 1.25, "x": 11.25, "y": 4 }, | ||
| 163 | { "matrix": [4, 11], "label": "Left", "x": 13, "y": 4 }, | ||
| 164 | { "matrix": [4, 13], "label": "Down", "x": 14, "y": 4 }, | ||
| 165 | { "matrix": [4, 15], "label": "Right", "x": 15, "y": 4 } | ||
| 166 | ] | ||
| 167 | } | ||
| 168 | } | ||
| 169 | } | ||
diff --git a/keyboards/forever65/keymaps/default/keymap.c b/keyboards/forever65/keymaps/default/keymap.c new file mode 100644 index 000000000..0cb7fcb82 --- /dev/null +++ b/keyboards/forever65/keymaps/default/keymap.c | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | /* Copyright 2021 zvecr<git@zvecr.com> | ||
| 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 | #include QMK_KEYBOARD_H | ||
| 17 | |||
| 18 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 19 | |||
| 20 | [0] = LAYOUT( | ||
| 21 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, | ||
| 22 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL, | ||
| 23 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_PGUP, | ||
| 24 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_PGDN, | ||
| 25 | KC_LCTL, KC_LWIN, KC_LALT, KC_SPC, KC_RALT, KC_RCTRL, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 26 | ), | ||
| 27 | }; | ||
diff --git a/keyboards/forever65/keymaps/via/keymap.c b/keyboards/forever65/keymaps/via/keymap.c new file mode 100644 index 000000000..3ced93f3e --- /dev/null +++ b/keyboards/forever65/keymaps/via/keymap.c | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | /* Copyright 2021 zvecr<git@zvecr.com> | ||
| 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 | #include QMK_KEYBOARD_H | ||
| 17 | |||
| 18 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 19 | |||
| 20 | [0] = LAYOUT_all( | ||
| 21 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_BSPC, | ||
| 22 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL, | ||
| 23 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_PGUP, | ||
| 24 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_PGDN, | ||
| 25 | KC_LCTL, KC_LWIN, KC_LALT, KC_SPC, KC_RALT, KC_RCTRL, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 26 | ), | ||
| 27 | [1] = LAYOUT_all( | ||
| 28 | RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 29 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 30 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 31 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 32 | _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 33 | ), | ||
| 34 | [2] = LAYOUT_all( | ||
| 35 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 36 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 37 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 38 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 39 | _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 40 | ), | ||
| 41 | [3] = LAYOUT_all( | ||
| 42 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 43 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 44 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 45 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 46 | _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 47 | ), | ||
| 48 | }; | ||
diff --git a/keyboards/forever65/keymaps/via/rules.mk b/keyboards/forever65/keymaps/via/rules.mk new file mode 100644 index 000000000..1e5b99807 --- /dev/null +++ b/keyboards/forever65/keymaps/via/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| VIA_ENABLE = yes | |||
diff --git a/keyboards/forever65/readme.md b/keyboards/forever65/readme.md new file mode 100644 index 000000000..0809b0145 --- /dev/null +++ b/keyboards/forever65/readme.md | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | # Forever65 | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | Gasket Mount 65% keyboard | ||
| 6 | |||
| 7 | * Keyboard Maintainer: [zvecr](https://github.com/zvecr) | ||
| 8 | * Hardware Supported: Forever65 PCB | ||
| 9 | * Hardware Availability: [Group-Buy](https://geekhack.org/index.php?topic=108809.0) | ||
| 10 | |||
| 11 | Make example for this keyboard (after setting up your build environment): | ||
| 12 | |||
| 13 | make forever65:default | ||
| 14 | |||
| 15 | 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/forever65/rules.mk b/keyboards/forever65/rules.mk new file mode 100644 index 000000000..6e7633bfe --- /dev/null +++ b/keyboards/forever65/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| # This file intentionally left blank | |||
