diff options
author | Drashna Jaelre <drashna@live.com> | 2021-07-03 16:48:51 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-03 16:48:51 -0700 |
commit | 2161496d62fef0f1255984cf4fc0e3e1c625d6fa (patch) | |
tree | 70dad42ff824eedf1cb4eda3733fc2ce36ccc299 /keyboards/phase_studio | |
parent | 79751f5b1544ead4e73951443aaf95fc49ff8a23 (diff) | |
download | qmk_firmware-2161496d62fef0f1255984cf4fc0e3e1c625d6fa.tar.gz qmk_firmware-2161496d62fef0f1255984cf4fc0e3e1c625d6fa.zip |
[Keyboard] Add soldered variant of Titan 65 keyboard. (#13270)
Diffstat (limited to 'keyboards/phase_studio')
19 files changed, 403 insertions, 29 deletions
diff --git a/keyboards/phase_studio/titan65/config.h b/keyboards/phase_studio/titan65/hotswap/config.h index 4104c2ec2..9a9e74bf1 100644 --- a/keyboards/phase_studio/titan65/config.h +++ b/keyboards/phase_studio/titan65/hotswap/config.h | |||
@@ -23,7 +23,7 @@ | |||
23 | #define PRODUCT_ID 0xBB91 | 23 | #define PRODUCT_ID 0xBB91 |
24 | #define DEVICE_VER 0x0001 | 24 | #define DEVICE_VER 0x0001 |
25 | #define MANUFACTURER Phase Studio | 25 | #define MANUFACTURER Phase Studio |
26 | #define PRODUCT Titan 65 | 26 | #define PRODUCT Titan 65 (hotswap) |
27 | 27 | ||
28 | /* key matrix size */ | 28 | /* key matrix size */ |
29 | #define MATRIX_ROWS 5 | 29 | #define MATRIX_ROWS 5 |
diff --git a/keyboards/phase_studio/titan65/titan65.c b/keyboards/phase_studio/titan65/hotswap/hotswap.c index b43c1b434..bc96b2d32 100644 --- a/keyboards/phase_studio/titan65/titan65.c +++ b/keyboards/phase_studio/titan65/hotswap/hotswap.c | |||
@@ -14,7 +14,7 @@ | |||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include "titan65.h" | 17 | #include "hotswap.h" |
18 | 18 | ||
19 | #ifdef RGB_MATRIX_ENABLE | 19 | #ifdef RGB_MATRIX_ENABLE |
20 | led_config_t g_led_config = { | 20 | led_config_t g_led_config = { |
diff --git a/keyboards/phase_studio/titan65/titan65.h b/keyboards/phase_studio/titan65/hotswap/hotswap.h index 36ea0e7e1..36ea0e7e1 100644 --- a/keyboards/phase_studio/titan65/titan65.h +++ b/keyboards/phase_studio/titan65/hotswap/hotswap.h | |||
diff --git a/keyboards/phase_studio/titan65/info.json b/keyboards/phase_studio/titan65/hotswap/info.json index d9e613ee8..71c3e9dcf 100644 --- a/keyboards/phase_studio/titan65/info.json +++ b/keyboards/phase_studio/titan65/hotswap/info.json | |||
@@ -1,5 +1,5 @@ | |||
1 | { | 1 | { |
2 | "keyboard_name": "Titan 65", | 2 | "keyboard_name": "Titan 65 (hotswap)", |
3 | "url": "", | 3 | "url": "", |
4 | "maintainer": "drashna", | 4 | "maintainer": "drashna", |
5 | "width": 16, | 5 | "width": 16, |
diff --git a/keyboards/phase_studio/titan65/keymaps/default/keymap.c b/keyboards/phase_studio/titan65/hotswap/keymaps/default/keymap.c index c921e1d3f..c921e1d3f 100644 --- a/keyboards/phase_studio/titan65/keymaps/default/keymap.c +++ b/keyboards/phase_studio/titan65/hotswap/keymaps/default/keymap.c | |||
diff --git a/keyboards/phase_studio/titan65/keymaps/via/keymap.c b/keyboards/phase_studio/titan65/hotswap/keymaps/via/keymap.c index 9844a0139..9844a0139 100644 --- a/keyboards/phase_studio/titan65/keymaps/via/keymap.c +++ b/keyboards/phase_studio/titan65/hotswap/keymaps/via/keymap.c | |||
diff --git a/keyboards/phase_studio/titan65/keymaps/via/rules.mk b/keyboards/phase_studio/titan65/hotswap/keymaps/via/rules.mk index 36b7ba9cb..36b7ba9cb 100644 --- a/keyboards/phase_studio/titan65/keymaps/via/rules.mk +++ b/keyboards/phase_studio/titan65/hotswap/keymaps/via/rules.mk | |||
diff --git a/keyboards/phase_studio/titan65/readme.md b/keyboards/phase_studio/titan65/hotswap/readme.md index 2d09592be..2d09592be 100644 --- a/keyboards/phase_studio/titan65/readme.md +++ b/keyboards/phase_studio/titan65/hotswap/readme.md | |||
diff --git a/keyboards/phase_studio/titan65/hotswap/rules.mk b/keyboards/phase_studio/titan65/hotswap/rules.mk new file mode 100644 index 000000000..02f2c7d01 --- /dev/null +++ b/keyboards/phase_studio/titan65/hotswap/rules.mk | |||
@@ -0,0 +1,26 @@ | |||
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 | NKRO_ENABLE = yes # USB Nkey Rollover | ||
16 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
17 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
18 | BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
19 | AUDIO_ENABLE = no # Audio output | ||
20 | RGB_MATRIX_ENABLE = yes | ||
21 | RGB_MATRIX_DRIVER = WS2812 | ||
22 | |||
23 | |||
24 | AUDIO_SUPPORTED = no | ||
25 | RGBLIGHT_SUPPORTED = no | ||
26 | RGB_MATRIX_SUPPORTED = yes | ||
diff --git a/keyboards/phase_studio/titan65/rules.mk b/keyboards/phase_studio/titan65/rules.mk index 02f2c7d01..d55ca35d7 100644 --- a/keyboards/phase_studio/titan65/rules.mk +++ b/keyboards/phase_studio/titan65/rules.mk | |||
@@ -1,26 +1 @@ | |||
1 | # MCU name | DEFAULT_FOLDER = phase_studio/titan65/hotswap | |
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 | NKRO_ENABLE = yes # USB Nkey Rollover | ||
16 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
17 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
18 | BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
19 | AUDIO_ENABLE = no # Audio output | ||
20 | RGB_MATRIX_ENABLE = yes | ||
21 | RGB_MATRIX_DRIVER = WS2812 | ||
22 | |||
23 | |||
24 | AUDIO_SUPPORTED = no | ||
25 | RGBLIGHT_SUPPORTED = no | ||
26 | RGB_MATRIX_SUPPORTED = yes | ||
diff --git a/keyboards/phase_studio/titan65/soldered/config.h b/keyboards/phase_studio/titan65/soldered/config.h new file mode 100644 index 000000000..6ecde7d1f --- /dev/null +++ b/keyboards/phase_studio/titan65/soldered/config.h | |||
@@ -0,0 +1,45 @@ | |||
1 | /* Copyright 2021 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.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 | |||
17 | #pragma once | ||
18 | |||
19 | #include "config_common.h" | ||
20 | |||
21 | /* USB Device descriptor parameter */ | ||
22 | #define VENDOR_ID 0x5054 | ||
23 | #define PRODUCT_ID 0xBB92 | ||
24 | #define DEVICE_VER 0x0001 | ||
25 | #define MANUFACTURER Phase Studio | ||
26 | #define PRODUCT Titan 65 (soldered) | ||
27 | |||
28 | /* key matrix size */ | ||
29 | #define MATRIX_ROWS 5 | ||
30 | #define MATRIX_COLS 16 | ||
31 | |||
32 | /* | ||
33 | * Keyboard Matrix Assignments | ||
34 | * | ||
35 | * Change this to how you wired your keyboard | ||
36 | * COLS: AVR pins used for columns, left to right | ||
37 | * ROWS: AVR pins used for rows, top to bottom | ||
38 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
39 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
40 | * | ||
41 | */ | ||
42 | #define MATRIX_ROW_PINS { B6, C6, C7, F7, E6 } | ||
43 | #define MATRIX_COL_PINS { D3, D5, D4, D6, D7, B4, B5, F6, F5, F4, F1, F0, B0, B1, B2, B3 } | ||
44 | |||
45 | #define DIODE_DIRECTION COL2ROW | ||
diff --git a/keyboards/phase_studio/titan65/soldered/info.json b/keyboards/phase_studio/titan65/soldered/info.json new file mode 100644 index 000000000..fbf4b0685 --- /dev/null +++ b/keyboards/phase_studio/titan65/soldered/info.json | |||
@@ -0,0 +1,83 @@ | |||
1 | { | ||
2 | "keyboard_name": "Titan 65 (soldered)", | ||
3 | "url": "", | ||
4 | "maintainer": "drashna", | ||
5 | "width": 16, | ||
6 | "height": 5, | ||
7 | "layouts": { | ||
8 | "LAYOUT_all": { | ||
9 | "layout": [ | ||
10 | {"label":"K00 (B4,B0)", "x":0, "y":0}, | ||
11 | {"label":"K01 (B4,B1)", "x":1, "y":0}, | ||
12 | {"label":"K02 (B4,B2)", "x":2, "y":0}, | ||
13 | {"label":"K03 (B4,B3)", "x":3, "y":0}, | ||
14 | {"label":"K04 (B4,B7)", "x":4, "y":0}, | ||
15 | {"label":"K05 (B4,D0)", "x":5, "y":0}, | ||
16 | {"label":"K06 (B4,D1)", "x":6, "y":0}, | ||
17 | {"label":"K07 (B4,D2)", "x":7, "y":0}, | ||
18 | {"label":"K08 (B4,D3)", "x":8, "y":0}, | ||
19 | {"label":"K09 (B4,D5)", "x":9, "y":0}, | ||
20 | {"label":"K0A (B4,F0)", "x":10, "y":0}, | ||
21 | {"label":"K0B (B4,F1)", "x":11, "y":0}, | ||
22 | {"label":"K0C (B4,C7)", "x":12, "y":0}, | ||
23 | {"label":"K0E (B4,F5)", "x":13, "y":0}, | ||
24 | {"label":"K0E (B4,F5)", "x":13, "y":0}, | ||
25 | {"label":"K0E (B4,F5)", "x":14, "y":0}, | ||
26 | {"label":"K0F (B4,F6)", "x":15, "y":0}, | ||
27 | {"label":"K10 (B5,B0)", "x":0, "y":1, "w":1.5}, | ||
28 | {"label":"K12 (B5,B2)", "x":1.5, "y":1}, | ||
29 | {"label":"K13 (B5,B3)", "x":2.5, "y":1}, | ||
30 | {"label":"K14 (B5,B7)", "x":3.5, "y":1}, | ||
31 | {"label":"K15 (B5,D0)", "x":4.5, "y":1}, | ||
32 | {"label":"K16 (B5,D1)", "x":5.5, "y":1}, | ||
33 | {"label":"K17 (B5,D2)", "x":6.5, "y":1}, | ||
34 | {"label":"K18 (B5,D3)", "x":7.5, "y":1}, | ||
35 | {"label":"K19 (B5,D5)", "x":8.5, "y":1}, | ||
36 | {"label":"K1A (B5,F0)", "x":9.5, "y":1}, | ||
37 | {"label":"K1B (B5,F1)", "x":10.5, "y":1}, | ||
38 | {"label":"K1C (B5,C7)", "x":11.5, "y":1}, | ||
39 | {"label":"K1D (B5,F4)", "x":12.5, "y":1}, | ||
40 | {"label":"K1E (B5,F5)", "x":13.5, "y":1, "w":1.5}, | ||
41 | {"label":"K1F (B5,F6)", "x":15, "y":1}, | ||
42 | {"label":"K20 (B6,B0)", "x":0, "y":2, "w":1.75}, | ||
43 | {"label":"K22 (B6,B2)", "x":1.75, "y":2}, | ||
44 | {"label":"K23 (B6,B3)", "x":2.75, "y":2}, | ||
45 | {"label":"K24 (B6,B7)", "x":3.75, "y":2}, | ||
46 | {"label":"K25 (B6,D0)", "x":4.75, "y":2}, | ||
47 | {"label":"K26 (B6,D1)", "x":5.75, "y":2}, | ||
48 | {"label":"K27 (B6,D2)", "x":6.75, "y":2}, | ||
49 | {"label":"K28 (B6,D3)", "x":7.75, "y":2}, | ||
50 | {"label":"K29 (B6,D5)", "x":8.75, "y":2}, | ||
51 | {"label":"K2A (B6,F0)", "x":9.75, "y":2}, | ||
52 | {"label":"K2B (B6,F1)", "x":10.75, "y":2}, | ||
53 | {"label":"K2C (B6,C7)", "x":11.75, "y":2}, | ||
54 | {"label":"K2D (B6,F4)", "x":12.75, "y":2, "w":2.25}, | ||
55 | {"label":"K2F (B6,F6)", "x":15, "y":2}, | ||
56 | {"label":"K30 (C6,B1)", "x":0, "y":3, "w":1.25}, | ||
57 | {"label":"K30 (C6,B1)", "x":1.25, "y":3}, | ||
58 | {"label":"K32 (C6,B2)", "x":2.25, "y":3}, | ||
59 | {"label":"K33 (C6,B3)", "x":3.25, "y":3}, | ||
60 | {"label":"K34 (C6,B7)", "x":4.25, "y":3}, | ||
61 | {"label":"K35 (C6,D0)", "x":5.25, "y":3}, | ||
62 | {"label":"K36 (C6,D1)", "x":6.25, "y":3}, | ||
63 | {"label":"K37 (C6,D2)", "x":7.25, "y":3}, | ||
64 | {"label":"K38 (C6,D3)", "x":8.25, "y":3}, | ||
65 | {"label":"K39 (C6,D5)", "x":9.25, "y":3}, | ||
66 | {"label":"K3A (C6,F0)", "x":10.25, "y":3}, | ||
67 | {"label":"K3B (C6,F1)", "x":11.25, "y":3}, | ||
68 | {"label":"K3D (C6,F4)", "x":12.25, "y":3, "w":1.75}, | ||
69 | {"label":"K3E (C6,F5)", "x":14, "y":3}, | ||
70 | {"label":"K3F (C6,F6)", "x":15, "y":3}, | ||
71 | {"label":"K40 (F7,B0)", "x":0, "y":4, "w":1.25}, | ||
72 | {"label":"K41 (F7,B1)", "x":1.25, "y":4}, | ||
73 | {"label":"K42 (F7,B2)", "x":2.25, "y":4, "w":1.25}, | ||
74 | {"label":"K46 (F7,D1)", "x":3.5, "y":4, "w":6.25}, | ||
75 | {"label":"K4A (F7,F0)", "x":9.75, "y":4, "w":1.25}, | ||
76 | {"label":"K4B (F7,F1)", "x":11, "y":4, "w":1.25}, | ||
77 | {"label":"K4D (F7,F4)", "x":13, "y":4}, | ||
78 | {"label":"K4E (F7,F5)", "x":14, "y":4}, | ||
79 | {"label":"K4F (F7,F6)", "x":15, "y":4} | ||
80 | ] | ||
81 | } | ||
82 | } | ||
83 | } | ||
diff --git a/keyboards/phase_studio/titan65/soldered/keymaps/default/keymap.c b/keyboards/phase_studio/titan65/soldered/keymaps/default/keymap.c new file mode 100644 index 000000000..7751c0a0d --- /dev/null +++ b/keyboards/phase_studio/titan65/soldered/keymaps/default/keymap.c | |||
@@ -0,0 +1,36 @@ | |||
1 | /* Copyright 2021 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.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 | |||
17 | #include QMK_KEYBOARD_H | ||
18 | |||
19 | |||
20 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
21 | [0] = LAYOUT_all( | ||
22 | 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_DEL, KC_HOME, | ||
23 | 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_PGUP, | ||
24 | 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_NUBS, KC_ENT, KC_PGDN, | ||
25 | KC_LSFT, KC_NUHS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_LSFT, KC_UP, LT(1, KC_END), | ||
26 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_LALT, KC_LCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
27 | ), | ||
28 | [1] = LAYOUT_all( | ||
29 | KC_GRV, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, | ||
30 | _______, RGB_MOD, RGB_HUI, RGB_SAI, RGB_VAI, RGB_TOG, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
31 | _______, RGB_RMOD,RGB_HUD, RGB_SAD, RGB_VAD, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
32 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
33 | _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
34 | ), | ||
35 | |||
36 | }; | ||
diff --git a/keyboards/phase_studio/titan65/soldered/keymaps/via/keymap.c b/keyboards/phase_studio/titan65/soldered/keymaps/via/keymap.c new file mode 100644 index 000000000..678dcfc91 --- /dev/null +++ b/keyboards/phase_studio/titan65/soldered/keymaps/via/keymap.c | |||
@@ -0,0 +1,51 @@ | |||
1 | /* Copyright 2021 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.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 | |||
17 | #include QMK_KEYBOARD_H | ||
18 | |||
19 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
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_DEL, KC_HOME, | ||
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_PGUP, | ||
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_NUBS, KC_ENT, KC_PGDN, | ||
24 | KC_LSFT, KC_NUHS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_LSFT, KC_UP, LT(1, KC_END), | ||
25 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_LALT, KC_LCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
26 | ), | ||
27 | [1] = LAYOUT_all( | ||
28 | KC_GRV, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, | ||
29 | _______, RGB_MOD, RGB_HUI, RGB_SAI, RGB_VAI, RGB_TOG, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
30 | _______, RGB_RMOD,RGB_HUD, RGB_SAD, RGB_VAD, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
31 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
32 | _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
33 | ), | ||
34 | |||
35 | |||
36 | [2] = LAYOUT_all( | ||
37 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
38 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
39 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
40 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
41 | _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
42 | ), | ||
43 | [3] = LAYOUT_all( | ||
44 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
45 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
46 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
47 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
48 | _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
49 | ), | ||
50 | |||
51 | }; | ||
diff --git a/keyboards/phase_studio/titan65/soldered/keymaps/via/rules.mk b/keyboards/phase_studio/titan65/soldered/keymaps/via/rules.mk new file mode 100644 index 000000000..36b7ba9cb --- /dev/null +++ b/keyboards/phase_studio/titan65/soldered/keymaps/via/rules.mk | |||
@@ -0,0 +1,2 @@ | |||
1 | VIA_ENABLE = yes | ||
2 | LTO_ENABLE = yes | ||
diff --git a/keyboards/phase_studio/titan65/soldered/readme.md b/keyboards/phase_studio/titan65/soldered/readme.md new file mode 100644 index 000000000..2d09592be --- /dev/null +++ b/keyboards/phase_studio/titan65/soldered/readme.md | |||
@@ -0,0 +1,24 @@ | |||
1 | # Titan 65 | ||
2 | |||
3 | A 65% ANSI keyboard with per key RGB | ||
4 | |||
5 | * Keyboard Maintainer: [Drashna Jaelre](https://github.com/drashna) | ||
6 | * Hardware Supported: atmega32u4 based PCB | ||
7 | * Hardware Availability: TBD | ||
8 | |||
9 | Make example for this keyboard (after setting up your build environment): | ||
10 | |||
11 | make phase_studio/titan65:default | ||
12 | |||
13 | Flashing example for this keyboard: | ||
14 | |||
15 | make phase_studio/titan65:default:flash | ||
16 | |||
17 | |||
18 | 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). | ||
19 | |||
20 | ## Bootloader | ||
21 | |||
22 | To enter the bootloader, hold down the top left most key when plugging in the USB cable. | ||
23 | |||
24 | Alternatively, the default keymap has a RESET key if yo hold down the "home" (right most, second from botton) key and hit the top right most key. | ||
diff --git a/keyboards/phase_studio/titan65/soldered/rules.mk b/keyboards/phase_studio/titan65/soldered/rules.mk new file mode 100644 index 000000000..6bfb47d73 --- /dev/null +++ b/keyboards/phase_studio/titan65/soldered/rules.mk | |||
@@ -0,0 +1,24 @@ | |||
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 | NKRO_ENABLE = yes # USB Nkey Rollover | ||
16 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
17 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
18 | BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
19 | AUDIO_ENABLE = no # Audio output | ||
20 | |||
21 | |||
22 | AUDIO_SUPPORTED = no | ||
23 | RGBLIGHT_SUPPORTED = no | ||
24 | RGB_MATRIX_SUPPORTED = no | ||
diff --git a/keyboards/phase_studio/titan65/soldered/soldered.c b/keyboards/phase_studio/titan65/soldered/soldered.c new file mode 100644 index 000000000..65aee33f6 --- /dev/null +++ b/keyboards/phase_studio/titan65/soldered/soldered.c | |||
@@ -0,0 +1,17 @@ | |||
1 | /* Copyright 2021 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.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 | |||
17 | #include "soldered.h" | ||
diff --git a/keyboards/phase_studio/titan65/soldered/soldered.h b/keyboards/phase_studio/titan65/soldered/soldered.h new file mode 100644 index 000000000..f31233797 --- /dev/null +++ b/keyboards/phase_studio/titan65/soldered/soldered.h | |||
@@ -0,0 +1,91 @@ | |||
1 | /* Copyright 2021 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.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 | |||
17 | #pragma once | ||
18 | |||
19 | #include "quantum.h" | ||
20 | |||
21 | #define ___ KC_NO | ||
22 | |||
23 | #define LAYOUT_all( \ | ||
24 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f, \ | ||
25 | k10, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f, \ | ||
26 | k20, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, k2f, \ | ||
27 | k30, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, k3f, \ | ||
28 | k40, k42, k43, k47, k4b, k4c, k4d, k4e, k4f \ | ||
29 | ) { \ | ||
30 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f }, \ | ||
31 | { k10, ___, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f }, \ | ||
32 | { k20, ___, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, k2f }, \ | ||
33 | { k30, ___, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, k3f }, \ | ||
34 | { k40, ___, k42, k43, ___, ___, ___, k47, ___, ___, ___, k4b, k4c, k4d, k4e, k4f } \ | ||
35 | } | ||
36 | |||
37 | #define LAYOUT_ansi( \ | ||
38 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0f, \ | ||
39 | k10, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f, \ | ||
40 | k20, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2e, k2f, \ | ||
41 | k30, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, k3f, \ | ||
42 | k40, k42, k43, k47, k4b, k4c, k4d, k4e, k4f \ | ||
43 | ) { \ | ||
44 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, ___, k0f }, \ | ||
45 | { k10, ___, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f }, \ | ||
46 | { k20, ___, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, ___, k2e, k2f }, \ | ||
47 | { k30, ___, ___, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, k3f }, \ | ||
48 | { k40, ___, k42, k43, ___, ___, ___, k47, ___, ___, ___, k4b, k4c, k4d, k4e, k4f } \ | ||
49 | } | ||
50 | |||
51 | #define LAYOUT_ansi_split_bspc( \ | ||
52 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f, \ | ||
53 | k10, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f, \ | ||
54 | k20, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2e, k2f, \ | ||
55 | k30, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, k3f, \ | ||
56 | k40, k42, k43, k47, k4b, k4c, k4d, k4e, k4f \ | ||
57 | ) { \ | ||
58 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f }, \ | ||
59 | { k10, ___, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f }, \ | ||
60 | { k20, ___, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, ___, k2e, k2f }, \ | ||
61 | { k30, ___, ___, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, k3f }, \ | ||
62 | { k40, ___, k42, k43, ___, ___, ___, k47, ___, ___, ___, k4b, k4c, k4d, k4e, k4f } \ | ||
63 | } | ||
64 | |||
65 | #define LAYOUT_iso( \ | ||
66 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0f, \ | ||
67 | k10, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1f, \ | ||
68 | k20, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, k2f, \ | ||
69 | k30, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, k3f, \ | ||
70 | k40, k42, k43, k47, k4b, k4c, k4d, k4e, k4f \ | ||
71 | ) { \ | ||
72 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, ___, k0f }, \ | ||
73 | { k10, ___, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, ___, k1f }, \ | ||
74 | { k20, ___, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, k2f }, \ | ||
75 | { k30, ___, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, k3f }, \ | ||
76 | { k40, ___, k42, k43, ___, ___, ___, k47, ___, ___, ___, k4b, k4c, k4d, k4e, k4f } \ | ||
77 | } | ||
78 | |||
79 | #define LAYOUT_iso_split_bspc( \ | ||
80 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f, \ | ||
81 | k10, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1f, \ | ||
82 | k20, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, k2f, \ | ||
83 | k30, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, k3f, \ | ||
84 | k40, k42, k43, k47, k4b, k4c, k4d, k4e, k4f \ | ||
85 | ) { \ | ||
86 | { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f }, \ | ||
87 | { k10, ___, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, ___, k1f }, \ | ||
88 | { k20, ___, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, k2f }, \ | ||
89 | { k30, ___, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, k3f }, \ | ||
90 | { k40, ___, k42, k43, ___, ___, ___, k47, ___, ___, ___, k4b, k4c, k4d, k4e, k4f } \ | ||
91 | } | ||