diff options
| author | Alabahuy <rezolutionrez@gmail.com> | 2021-07-29 23:12:29 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-29 09:12:29 -0700 |
| commit | aa0b7079a4a7a3174c7f078fc5fa81e630df1775 (patch) | |
| tree | bd9a8ebb7dfcd70358e61424514d8a7157f52a26 /keyboards/ocean/sus | |
| parent | 441fd2ca5b942ea93d2345d1181ed76a95fd8ae7 (diff) | |
| download | qmk_firmware-aa0b7079a4a7a3174c7f078fc5fa81e630df1775.tar.gz qmk_firmware-aa0b7079a4a7a3174c7f078fc5fa81e630df1775.zip | |
[Keyboard] add sus board (#13701)
Diffstat (limited to 'keyboards/ocean/sus')
| -rw-r--r-- | keyboards/ocean/sus/config.h | 51 | ||||
| -rw-r--r-- | keyboards/ocean/sus/info.json | 28 | ||||
| -rw-r--r-- | keyboards/ocean/sus/keymaps/default/keymap.c | 45 | ||||
| -rw-r--r-- | keyboards/ocean/sus/keymaps/via/keymap.c | 45 | ||||
| -rw-r--r-- | keyboards/ocean/sus/keymaps/via/rules.mk | 2 | ||||
| -rw-r--r-- | keyboards/ocean/sus/readme.md | 24 | ||||
| -rw-r--r-- | keyboards/ocean/sus/rules.mk | 22 | ||||
| -rw-r--r-- | keyboards/ocean/sus/sus.c | 15 | ||||
| -rw-r--r-- | keyboards/ocean/sus/sus.h | 31 |
9 files changed, 263 insertions, 0 deletions
diff --git a/keyboards/ocean/sus/config.h b/keyboards/ocean/sus/config.h new file mode 100644 index 000000000..c3e2a3263 --- /dev/null +++ b/keyboards/ocean/sus/config.h | |||
| @@ -0,0 +1,51 @@ | |||
| 1 | /*Copyright 2021 Ocean | ||
| 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 | #include "config_common.h" | ||
| 20 | |||
| 21 | #define VENDOR_ID 0x9624 | ||
| 22 | #define PRODUCT_ID 0x0009 | ||
| 23 | #define DEVICE_VER 0x0001 | ||
| 24 | #define MANUFACTURER Ocean | ||
| 25 | #define PRODUCT Sus | ||
| 26 | |||
| 27 | /* key matrix size */ | ||
| 28 | #define MATRIX_ROWS 4 | ||
| 29 | #define MATRIX_COLS 3 | ||
| 30 | |||
| 31 | /* | ||
| 32 | * Keyboard Matrix Assignments | ||
| 33 | * | ||
| 34 | * Change this to how you wired your keyboard | ||
| 35 | * COLS: AVR pins used for columns, left to right | ||
| 36 | * ROWS: AVR pins used for rows, top to bottom | ||
| 37 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
| 38 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
| 39 | * | ||
| 40 | */ | ||
| 41 | /* 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14*/ | ||
| 42 | #define MATRIX_ROW_PINS { B5, B4, E6, D7 } | ||
| 43 | #define MATRIX_COL_PINS { C6, D4, D0 } | ||
| 44 | #define UNUSED_PINS | ||
| 45 | |||
| 46 | /* COL2ROW, ROW2COL*/ | ||
| 47 | #define DIODE_DIRECTION ROW2COL | ||
| 48 | |||
| 49 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 50 | #define DEBOUNCE 5 | ||
| 51 | |||
diff --git a/keyboards/ocean/sus/info.json b/keyboards/ocean/sus/info.json new file mode 100644 index 000000000..9bfad4239 --- /dev/null +++ b/keyboards/ocean/sus/info.json | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "SUS", | ||
| 3 | "url": " ", | ||
| 4 | "maintainer": "Ocean", | ||
| 5 | "width": 3, | ||
| 6 | "height": 4, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_ortho_3x4": { | ||
| 9 | "layout": [ | ||
| 10 | {"x":0, "y":0}, | ||
| 11 | {"x":1, "y":0}, | ||
| 12 | {"x":2, "y":0}, | ||
| 13 | |||
| 14 | {"x":0, "y":1}, | ||
| 15 | {"x":1, "y":1}, | ||
| 16 | {"x":2, "y":1}, | ||
| 17 | |||
| 18 | {"x":0, "y":2}, | ||
| 19 | {"x":1, "y":2}, | ||
| 20 | {"x":2, "y":2}, | ||
| 21 | |||
| 22 | {"x":0, "y":3}, | ||
| 23 | {"x":1, "y":3}, | ||
| 24 | {"x":2, "y":3} | ||
| 25 | ] | ||
| 26 | } | ||
| 27 | } | ||
| 28 | } \ No newline at end of file | ||
diff --git a/keyboards/ocean/sus/keymaps/default/keymap.c b/keyboards/ocean/sus/keymaps/default/keymap.c new file mode 100644 index 000000000..166e84018 --- /dev/null +++ b/keyboards/ocean/sus/keymaps/default/keymap.c | |||
| @@ -0,0 +1,45 @@ | |||
| 1 | /* Copyright 2021 Ocean | ||
| 2 | * This program is free software: you can redistribute it and/or modify | ||
| 3 | * it under the terms of the GNU General Public License as published by | ||
| 4 | * the Free Software Foundation, either version 2 of the License, or | ||
| 5 | * (at your option) any later version. | ||
| 6 | * | ||
| 7 | * This program is distributed in the hope that it will be useful, | ||
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 10 | * GNU General Public License for more details. | ||
| 11 | * | ||
| 12 | * You should have received a copy of the GNU General Public License | ||
| 13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 14 | */ | ||
| 15 | #include QMK_KEYBOARD_H | ||
| 16 | |||
| 17 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 18 | [0] = LAYOUT_ortho_3x4( | ||
| 19 | KC_P7, KC_P8, KC_P9, | ||
| 20 | KC_P4, KC_P5, KC_P6, | ||
| 21 | KC_P1, KC_P2, KC_P3, | ||
| 22 | KC_PENT, KC_P0, MO(1) | ||
| 23 | ), | ||
| 24 | |||
| 25 | [1] = LAYOUT_ortho_3x4( | ||
| 26 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 27 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 28 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 29 | KC_TRNS, KC_TRNS, KC_TRNS | ||
| 30 | ), | ||
| 31 | |||
| 32 | [2] = LAYOUT_ortho_3x4( | ||
| 33 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 34 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 35 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 36 | KC_TRNS, KC_TRNS, KC_TRNS | ||
| 37 | ), | ||
| 38 | |||
| 39 | [3] = LAYOUT_ortho_3x4( | ||
| 40 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 41 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 42 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 43 | KC_TRNS, KC_TRNS, KC_TRNS | ||
| 44 | ) | ||
| 45 | }; | ||
diff --git a/keyboards/ocean/sus/keymaps/via/keymap.c b/keyboards/ocean/sus/keymaps/via/keymap.c new file mode 100644 index 000000000..166e84018 --- /dev/null +++ b/keyboards/ocean/sus/keymaps/via/keymap.c | |||
| @@ -0,0 +1,45 @@ | |||
| 1 | /* Copyright 2021 Ocean | ||
| 2 | * This program is free software: you can redistribute it and/or modify | ||
| 3 | * it under the terms of the GNU General Public License as published by | ||
| 4 | * the Free Software Foundation, either version 2 of the License, or | ||
| 5 | * (at your option) any later version. | ||
| 6 | * | ||
| 7 | * This program is distributed in the hope that it will be useful, | ||
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 10 | * GNU General Public License for more details. | ||
| 11 | * | ||
| 12 | * You should have received a copy of the GNU General Public License | ||
| 13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 14 | */ | ||
| 15 | #include QMK_KEYBOARD_H | ||
| 16 | |||
| 17 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 18 | [0] = LAYOUT_ortho_3x4( | ||
| 19 | KC_P7, KC_P8, KC_P9, | ||
| 20 | KC_P4, KC_P5, KC_P6, | ||
| 21 | KC_P1, KC_P2, KC_P3, | ||
| 22 | KC_PENT, KC_P0, MO(1) | ||
| 23 | ), | ||
| 24 | |||
| 25 | [1] = LAYOUT_ortho_3x4( | ||
| 26 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 27 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 28 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 29 | KC_TRNS, KC_TRNS, KC_TRNS | ||
| 30 | ), | ||
| 31 | |||
| 32 | [2] = LAYOUT_ortho_3x4( | ||
| 33 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 34 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 35 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 36 | KC_TRNS, KC_TRNS, KC_TRNS | ||
| 37 | ), | ||
| 38 | |||
| 39 | [3] = LAYOUT_ortho_3x4( | ||
| 40 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 41 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 42 | KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 43 | KC_TRNS, KC_TRNS, KC_TRNS | ||
| 44 | ) | ||
| 45 | }; | ||
diff --git a/keyboards/ocean/sus/keymaps/via/rules.mk b/keyboards/ocean/sus/keymaps/via/rules.mk new file mode 100644 index 000000000..36b7ba9cb --- /dev/null +++ b/keyboards/ocean/sus/keymaps/via/rules.mk | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | VIA_ENABLE = yes | ||
| 2 | LTO_ENABLE = yes | ||
diff --git a/keyboards/ocean/sus/readme.md b/keyboards/ocean/sus/readme.md new file mode 100644 index 000000000..5cc8a9459 --- /dev/null +++ b/keyboards/ocean/sus/readme.md | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | # SUS Board | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | |||
| 6 | A Macropad like a amogus | ||
| 7 | |||
| 8 | * Keyboard Maintainer: Ocean | ||
| 9 | * Hardware Supported: Sus Board, Pro Micro | ||
| 10 | * Hardware Availability: Private GB | ||
| 11 | |||
| 12 | Make example for this keyboard (after setting up your build environment): | ||
| 13 | |||
| 14 | make ocean/sus:default | ||
| 15 | |||
| 16 | Flashing example for this keyboard: | ||
| 17 | |||
| 18 | make ocean/sus:default:flash | ||
| 19 | |||
| 20 | ## Bootloader | ||
| 21 | |||
| 22 | To Enter the bootloader you can double click reset button on board when you flash the firmware | ||
| 23 | |||
| 24 | 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/ocean/sus/rules.mk b/keyboards/ocean/sus/rules.mk new file mode 100644 index 000000000..68a44eb8b --- /dev/null +++ b/keyboards/ocean/sus/rules.mk | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | BOOTLOADER = caterina | ||
| 6 | |||
| 7 | # Build Options | ||
| 8 | # change yes to no to disable | ||
| 9 | # | ||
| 10 | BOOTMAGIC_ENABLE = no # 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 \ No newline at end of file | ||
diff --git a/keyboards/ocean/sus/sus.c b/keyboards/ocean/sus/sus.c new file mode 100644 index 000000000..d04a12bfb --- /dev/null +++ b/keyboards/ocean/sus/sus.c | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | /* Copyright 2021 Ocean | ||
| 2 | * This program is free software: you can redistribute it and/or modify | ||
| 3 | * it under the terms of the GNU General Public License as published by | ||
| 4 | * the Free Software Foundation, either version 2 of the License, or | ||
| 5 | * (at your option) any later version. | ||
| 6 | * | ||
| 7 | * This program is distributed in the hope that it will be useful, | ||
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 10 | * GNU General Public License for more details. | ||
| 11 | * | ||
| 12 | * You should have received a copy of the GNU General Public License | ||
| 13 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 14 | */ | ||
| 15 | #include "sus.h" | ||
diff --git a/keyboards/ocean/sus/sus.h b/keyboards/ocean/sus/sus.h new file mode 100644 index 000000000..394b00338 --- /dev/null +++ b/keyboards/ocean/sus/sus.h | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | /* Copyright 2021 Ocean | ||
| 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 LAYOUT_ortho_3x4(\ | ||
| 21 | K00, K01, K02, \ | ||
| 22 | K10, K11, K12, \ | ||
| 23 | K20, K21, K22, \ | ||
| 24 | K30, K31, K32 \ | ||
| 25 | ) \ | ||
| 26 | { \ | ||
| 27 | { K00, K01, K02 }, \ | ||
| 28 | { K10, K11, K12 }, \ | ||
| 29 | { K20, K21, K22 }, \ | ||
| 30 | { K30, K31, K32 }, \ | ||
| 31 | } | ||
