diff options
author | Matthew Dias <matthewdias@me.com> | 2021-11-15 18:29:19 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-15 16:29:19 -0800 |
commit | d3ae937b50df8d98deb3dc3b9f8aa1635eac1c8b (patch) | |
tree | c7470daa2e80ad935a95c4a3a6bb23f0985c310a | |
parent | 269990ed95f80db2349661b2731b42501e3b2803 (diff) | |
download | qmk_firmware-d3ae937b50df8d98deb3dc3b9f8aa1635eac1c8b.tar.gz qmk_firmware-d3ae937b50df8d98deb3dc3b9f8aa1635eac1c8b.zip |
[Keyboard] Add layout options, hotswap version to portal 66 (#14719)
Co-authored-by: Drashna Jaelre <drashna@live.com>
20 files changed, 413 insertions, 44 deletions
diff --git a/keyboards/portal_66/hotswap/config.h b/keyboards/portal_66/hotswap/config.h new file mode 100644 index 000000000..db4c59bd4 --- /dev/null +++ b/keyboards/portal_66/hotswap/config.h | |||
@@ -0,0 +1,109 @@ | |||
1 | /* | ||
2 | Copyright 2021 Matthew Dias | ||
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 | |||
20 | #include "config_common.h" | ||
21 | |||
22 | /* USB Device descriptor parameter */ | ||
23 | #define VENDOR_ID 0x504C | ||
24 | #define PRODUCT_ID 0x5067 | ||
25 | #define DEVICE_VER 0x0001 | ||
26 | #define MANUFACTURER Parallel Limited | ||
27 | #define PRODUCT Portal 66 | ||
28 | |||
29 | /* key matrix size */ | ||
30 | #define MATRIX_ROWS 5 | ||
31 | #define MATRIX_COLS 16 | ||
32 | |||
33 | /* | ||
34 | * Keyboard Matrix Assignments | ||
35 | * | ||
36 | * Change this to how you wired your keyboard | ||
37 | * COLS: AVR pins used for columns, left to right | ||
38 | * ROWS: AVR pins used for rows, top to bottom | ||
39 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
40 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
41 | * | ||
42 | */ | ||
43 | #define MATRIX_ROW_PINS { E6, B7, F7, F4, F5 } | ||
44 | #define MATRIX_COL_PINS { F6, B0, F1, C7, C6, B6, B5, B4, D7, D6, D4, D5, D3, D2, D1, D0 } | ||
45 | #define UNUSED_PINS | ||
46 | |||
47 | /* COL2ROW, ROW2COL */ | ||
48 | #define DIODE_DIRECTION COL2ROW | ||
49 | |||
50 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
51 | #define DEBOUNCE 5 | ||
52 | |||
53 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
54 | //#define MATRIX_HAS_GHOST | ||
55 | |||
56 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
57 | #define LOCKING_SUPPORT_ENABLE | ||
58 | /* Locking resynchronize hack */ | ||
59 | #define LOCKING_RESYNC_ENABLE | ||
60 | |||
61 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
62 | * This is useful for the Windows task manager shortcut (ctrl+shift+esc). | ||
63 | */ | ||
64 | //#define GRAVE_ESC_CTRL_OVERRIDE | ||
65 | |||
66 | /* | ||
67 | * Force NKRO | ||
68 | * | ||
69 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
70 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
71 | * makefile for this to work.) | ||
72 | * | ||
73 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
74 | * until the next keyboard reset. | ||
75 | * | ||
76 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
77 | * fully operational during normal computer usage. | ||
78 | * | ||
79 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
80 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
81 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
82 | * power-up. | ||
83 | * | ||
84 | */ | ||
85 | //#define FORCE_NKRO | ||
86 | |||
87 | /* | ||
88 | * Feature disable options | ||
89 | * These options are also useful to firmware size reduction. | ||
90 | */ | ||
91 | |||
92 | /* disable debug print */ | ||
93 | //#define NO_DEBUG | ||
94 | |||
95 | /* disable print */ | ||
96 | //#define NO_PRINT | ||
97 | |||
98 | /* disable action features */ | ||
99 | //#define NO_ACTION_LAYER | ||
100 | //#define NO_ACTION_TAPPING | ||
101 | //#define NO_ACTION_ONESHOT | ||
102 | |||
103 | /* disable these deprecated features by default */ | ||
104 | #define NO_ACTION_MACRO | ||
105 | #define NO_ACTION_FUNCTION | ||
106 | |||
107 | /* Bootmagic Lite key configuration */ | ||
108 | //#define BOOTMAGIC_LITE_ROW 0 | ||
109 | //#define BOOTMAGIC_LITE_COLUMN 0 | ||
diff --git a/keyboards/portal_66/portal_66.c b/keyboards/portal_66/hotswap/hotswap.c index a53989f94..4189a8a80 100644 --- a/keyboards/portal_66/portal_66.c +++ b/keyboards/portal_66/hotswap/hotswap.c | |||
@@ -14,4 +14,4 @@ | |||
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 "portal_66.h" | 17 | #include "hotswap.h" |
diff --git a/keyboards/portal_66/hotswap/hotswap.h b/keyboards/portal_66/hotswap/hotswap.h new file mode 100644 index 000000000..734184dd7 --- /dev/null +++ b/keyboards/portal_66/hotswap/hotswap.h | |||
@@ -0,0 +1,33 @@ | |||
1 | /* Copyright 2021 Matthew Dias | ||
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 LAYOUT( \ | ||
22 | k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k014, k015, \ | ||
23 | k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, k115, \ | ||
24 | k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k213, k215, \ | ||
25 | k300, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, k315, \ | ||
26 | k400, k401, k402, k406, k409, k411, k412, k413, k415 \ | ||
27 | ) { \ | ||
28 | { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, KC_NO, k014, k015 }, \ | ||
29 | { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, KC_NO, k115 }, \ | ||
30 | { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, KC_NO, k213, KC_NO, k215 }, \ | ||
31 | { k300, KC_NO, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, KC_NO, k315 }, \ | ||
32 | { k400, k401, k402, KC_NO, KC_NO, KC_NO, k406, KC_NO, KC_NO, k409, KC_NO, k411, k412, k413, KC_NO, k415 } \ | ||
33 | } | ||
diff --git a/keyboards/portal_66/hotswap/info.json b/keyboards/portal_66/hotswap/info.json new file mode 100644 index 000000000..e90bdd881 --- /dev/null +++ b/keyboards/portal_66/hotswap/info.json | |||
@@ -0,0 +1,81 @@ | |||
1 | { | ||
2 | "keyboard_name": "Portal 66 Hotswap", | ||
3 | "maintainer": "matthewdias", | ||
4 | "layouts": { | ||
5 | "LAYOUT": { | ||
6 | "layout": [ | ||
7 | { "x":0, "y":0 }, | ||
8 | { "x":1, "y":0 }, | ||
9 | { "x":2, "y":0 }, | ||
10 | { "x":3, "y":0 }, | ||
11 | { "x":4, "y":0 }, | ||
12 | { "x":5, "y":0 }, | ||
13 | { "x":6, "y":0 }, | ||
14 | { "x":7, "y":0 }, | ||
15 | { "x":8, "y":0 }, | ||
16 | { "x":9, "y":0 }, | ||
17 | { "x":10, "y":0 }, | ||
18 | { "x":11, "y":0 }, | ||
19 | { "x":12, "y":0 }, | ||
20 | { "x":13, "y":0, "w": 2 }, | ||
21 | { "x":15, "y":0 }, | ||
22 | |||
23 | { "x":0, "y":1, "w":1.5 }, | ||
24 | { "x":1.5, "y":1 }, | ||
25 | { "x":2.5, "y":1 }, | ||
26 | { "x":3.5, "y":1 }, | ||
27 | { "x":4.5, "y":1 }, | ||
28 | { "x":5.5, "y":1 }, | ||
29 | { "x":6.5, "y":1 }, | ||
30 | { "x":7.5, "y":1 }, | ||
31 | { "x":8.5, "y":1 }, | ||
32 | { "x":9.5, "y":1 }, | ||
33 | { "x":10.5, "y":1 }, | ||
34 | { "x":11.5, "y":1 }, | ||
35 | { "x":12.5, "y":1 }, | ||
36 | { "x":13.5, "y":1, "w":1.5 }, | ||
37 | { "x":15, "y":1 }, | ||
38 | |||
39 | { "x":0, "y":2, "w":1.75 }, | ||
40 | { "x":1.75, "y":2 }, | ||
41 | { "x":2.75, "y":2 }, | ||
42 | { "x":3.75, "y":2 }, | ||
43 | { "x":4.75, "y":2 }, | ||
44 | { "x":5.75, "y":2 }, | ||
45 | { "x":6.75, "y":2 }, | ||
46 | { "x":7.75, "y":2 }, | ||
47 | { "x":8.75, "y":2 }, | ||
48 | { "x":9.75, "y":2 }, | ||
49 | { "x":10.75, "y":2 }, | ||
50 | { "x":11.75, "y":2 }, | ||
51 | { "x":12.75, "y":2, "w":2.25 }, | ||
52 | { "x":15, "y":2 }, | ||
53 | |||
54 | { "x":0, "y":3, "w":2.25 }, | ||
55 | { "x":2.25, "y":3 }, | ||
56 | { "x":3.25, "y":3 }, | ||
57 | { "x":4.25, "y":3 }, | ||
58 | { "x":5.25, "y":3 }, | ||
59 | { "x":6.25, "y":3 }, | ||
60 | { "x":7.25, "y":3 }, | ||
61 | { "x":8.25, "y":3 }, | ||
62 | { "x":9.25, "y":3 }, | ||
63 | { "x":10.25, "y":3 }, | ||
64 | { "x":11.25, "y":3 }, | ||
65 | { "x":12.25, "y":3, "w":1.75 }, | ||
66 | { "x":14, "y":3 }, | ||
67 | { "x":15, "y":3 }, | ||
68 | |||
69 | { "x":0, "y":4, "w":1.25 }, | ||
70 | { "x":1.25, "y":4, "w":1.25 }, | ||
71 | { "x":2.5, "y":4, "w":1.25 }, | ||
72 | { "x":3.75, "y":4, "w":6.25 }, | ||
73 | { "x":10, "y":4, "w":1.25 }, | ||
74 | { "x":11.25, "y":4, "w":1.25 }, | ||
75 | { "x":13, "y":4 }, | ||
76 | { "x":14, "y":4 }, | ||
77 | { "x":15, "y":4 } | ||
78 | ] | ||
79 | } | ||
80 | } | ||
81 | } | ||
diff --git a/keyboards/portal_66/hotswap/keymaps/default/keymap.c b/keyboards/portal_66/hotswap/keymaps/default/keymap.c new file mode 100644 index 000000000..a476f5984 --- /dev/null +++ b/keyboards/portal_66/hotswap/keymaps/default/keymap.c | |||
@@ -0,0 +1,38 @@ | |||
1 | /* Copyright 2021 Matthew Dias | ||
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 | enum layer_names { | ||
19 | _BASE, | ||
20 | _FN | ||
21 | }; | ||
22 | |||
23 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
24 | [_BASE] = LAYOUT( | ||
25 | 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_HOME, | ||
26 | 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_END, | ||
27 | 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, | ||
28 | 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, | ||
29 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FN), KC_LEFT, KC_DOWN, KC_RGHT | ||
30 | ), | ||
31 | [_FN] = LAYOUT( | ||
32 | RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, | ||
33 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
34 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
35 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
36 | _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
37 | ) | ||
38 | }; | ||
diff --git a/keyboards/portal_66/hotswap/keymaps/default/readme.md b/keyboards/portal_66/hotswap/keymaps/default/readme.md new file mode 100644 index 000000000..1a4e1624e --- /dev/null +++ b/keyboards/portal_66/hotswap/keymaps/default/readme.md | |||
@@ -0,0 +1 @@ | |||
# The default keymap for Portal 66 Hotswap | |||
diff --git a/keyboards/portal_66/hotswap/keymaps/via/keymap.c b/keyboards/portal_66/hotswap/keymaps/via/keymap.c new file mode 100644 index 000000000..a89f1eee6 --- /dev/null +++ b/keyboards/portal_66/hotswap/keymaps/via/keymap.c | |||
@@ -0,0 +1,54 @@ | |||
1 | /* Copyright 2021 Matthew Dias | ||
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 | enum layer_names { | ||
19 | _L0, | ||
20 | _L1, | ||
21 | _L2, | ||
22 | _L3 | ||
23 | }; | ||
24 | |||
25 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
26 | [_L0] = LAYOUT( | ||
27 | 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_HOME, | ||
28 | 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_END, | ||
29 | 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, | ||
30 | 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, | ||
31 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_L1), KC_LEFT, KC_DOWN, KC_RGHT | ||
32 | ), | ||
33 | [_L1] = LAYOUT( | ||
34 | RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, | ||
35 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
36 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
37 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
38 | _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
39 | ), | ||
40 | [_L2] = LAYOUT( | ||
41 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
42 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
43 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
44 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
45 | _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
46 | ), | ||
47 | [_L3] = LAYOUT( | ||
48 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
49 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
50 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
51 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
52 | _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
53 | ) | ||
54 | }; | ||
diff --git a/keyboards/portal_66/keymaps/via/rules.mk b/keyboards/portal_66/hotswap/keymaps/via/rules.mk index 1e5b99807..1e5b99807 100644 --- a/keyboards/portal_66/keymaps/via/rules.mk +++ b/keyboards/portal_66/hotswap/keymaps/via/rules.mk | |||
diff --git a/keyboards/portal_66/hotswap/readme.md b/keyboards/portal_66/hotswap/readme.md new file mode 100644 index 000000000..91434a11c --- /dev/null +++ b/keyboards/portal_66/hotswap/readme.md | |||
@@ -0,0 +1,18 @@ | |||
1 | # Portal 66 | ||
2 | |||
3 | A 65% keyboard | ||
4 | |||
5 | * Keyboard Maintainer: matthewdias | ||
6 | * Hardware Supported: Portal 66 Hotswap | ||
7 | |||
8 | To reset the keyboard into bootloader mode, press the reset switch on the underside. | ||
9 | |||
10 | Make example for this keyboard (after setting up your build environment): | ||
11 | |||
12 | make portal_66/hotswap:default | ||
13 | |||
14 | Flashing example for this keyboard: | ||
15 | |||
16 | make portal_66/hotswap:default:flash | ||
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). | ||
diff --git a/keyboards/portal_66/rules.mk b/keyboards/portal_66/hotswap/rules.mk index a3cd44fa4..c79f74e34 100644 --- a/keyboards/portal_66/rules.mk +++ b/keyboards/portal_66/hotswap/rules.mk | |||
@@ -19,5 +19,3 @@ NKRO_ENABLE = no # USB Nkey Rollover | |||
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
21 | AUDIO_ENABLE = no # Audio output | 21 | AUDIO_ENABLE = no # Audio output |
22 | |||
23 | LAYOUTS = 65_ansi | ||
diff --git a/keyboards/portal_66/config.h b/keyboards/portal_66/soldered/config.h index 3a3efc80b..3a3efc80b 100644 --- a/keyboards/portal_66/config.h +++ b/keyboards/portal_66/soldered/config.h | |||
diff --git a/keyboards/portal_66/info.json b/keyboards/portal_66/soldered/info.json index 253e9dd7b..730b5400e 100644 --- a/keyboards/portal_66/info.json +++ b/keyboards/portal_66/soldered/info.json | |||
@@ -71,9 +71,8 @@ | |||
71 | { "x":1.25, "y":4, "w":1.25 }, | 71 | { "x":1.25, "y":4, "w":1.25 }, |
72 | { "x":2.5, "y":4, "w":1.25 }, | 72 | { "x":2.5, "y":4, "w":1.25 }, |
73 | { "x":3.75, "y":4, "w":6.25 }, | 73 | { "x":3.75, "y":4, "w":6.25 }, |
74 | { "x":10, "y":4 }, | 74 | { "x":10, "y":4, "w":1.25 }, |
75 | { "x":11, "y":4 }, | 75 | { "x":11.25, "y":4, "w":1.25 }, |
76 | { "x":12, "y":4 }, | ||
77 | { "x":13, "y":4 }, | 76 | { "x":13, "y":4 }, |
78 | { "x":14, "y":4 }, | 77 | { "x":14, "y":4 }, |
79 | { "x":15, "y":4 } | 78 | { "x":15, "y":4 } |
@@ -147,15 +146,14 @@ | |||
147 | { "x":1.25, "y":4, "w":1.25 }, | 146 | { "x":1.25, "y":4, "w":1.25 }, |
148 | { "x":2.5, "y":4, "w":1.25 }, | 147 | { "x":2.5, "y":4, "w":1.25 }, |
149 | { "x":3.75, "y":4, "w":6.25 }, | 148 | { "x":3.75, "y":4, "w":6.25 }, |
150 | { "x":10, "y":4 }, | 149 | { "x":10, "y":4, "w":1.25 }, |
151 | { "x":11, "y":4 }, | 150 | { "x":11.25, "y":4, "w":1.25 }, |
152 | { "x":12, "y":4 }, | ||
153 | { "x":13, "y":4 }, | 151 | { "x":13, "y":4 }, |
154 | { "x":14, "y":4 }, | 152 | { "x":14, "y":4 }, |
155 | { "x":15, "y":4 } | 153 | { "x":15, "y":4 } |
156 | ] | 154 | ] |
157 | }, | 155 | }, |
158 | "LAYOUT_65_ansi_split_bs_2_right_mods": { | 156 | "LAYOUT_65_tsangan_split_bs": { |
159 | "layout": [ | 157 | "layout": [ |
160 | { "x":0, "y":0 }, | 158 | { "x":0, "y":0 }, |
161 | { "x":1, "y":0 }, | 159 | { "x":1, "y":0 }, |
@@ -220,18 +218,17 @@ | |||
220 | { "x":14, "y":3 }, | 218 | { "x":14, "y":3 }, |
221 | { "x":15, "y":3 }, | 219 | { "x":15, "y":3 }, |
222 | 220 | ||
223 | { "x":0, "y":4, "w":1.25 }, | 221 | { "x":0, "y":4, "w":1.5 }, |
224 | { "x":1.25, "y":4, "w":1.25 }, | 222 | { "x":1.5, "y":4, "w":1 }, |
225 | { "x":2.5, "y":4, "w":1.25 }, | 223 | { "x":2.5, "y":4, "w":1.5 }, |
226 | { "x":3.75, "y":4, "w":6.25 }, | 224 | { "x":4, "y":4, "w":7 }, |
227 | { "x":10, "y":4, "w":1.5 }, | 225 | { "x":11, "y":4, "w":1.5 }, |
228 | { "x":11.5, "y":4, "w":1.5 }, | ||
229 | { "x":13, "y":4 }, | 226 | { "x":13, "y":4 }, |
230 | { "x":14, "y":4 }, | 227 | { "x":14, "y":4 }, |
231 | { "x":15, "y":4 } | 228 | { "x":15, "y":4 } |
232 | ] | 229 | ] |
233 | }, | 230 | }, |
234 | "LAYOUT_65_ansi_2_right_mods": { | 231 | "LAYOUT_65_iso": { |
235 | "layout": [ | 232 | "layout": [ |
236 | { "x":0, "y":0 }, | 233 | { "x":0, "y":0 }, |
237 | { "x":1, "y":0 }, | 234 | { "x":1, "y":0 }, |
@@ -262,7 +259,6 @@ | |||
262 | { "x":10.5, "y":1 }, | 259 | { "x":10.5, "y":1 }, |
263 | { "x":11.5, "y":1 }, | 260 | { "x":11.5, "y":1 }, |
264 | { "x":12.5, "y":1 }, | 261 | { "x":12.5, "y":1 }, |
265 | { "x":13.5, "y":1, "w":1.5 }, | ||
266 | { "x":15, "y":1 }, | 262 | { "x":15, "y":1 }, |
267 | 263 | ||
268 | { "x":0, "y":2, "w":1.75 }, | 264 | { "x":0, "y":2, "w":1.75 }, |
@@ -277,10 +273,12 @@ | |||
277 | { "x":9.75, "y":2 }, | 273 | { "x":9.75, "y":2 }, |
278 | { "x":10.75, "y":2 }, | 274 | { "x":10.75, "y":2 }, |
279 | { "x":11.75, "y":2 }, | 275 | { "x":11.75, "y":2 }, |
280 | { "x":12.75, "y":2, "w":2.25 }, | 276 | { "x":12.75, "y":2 }, |
277 | { "x":13.75, "y":1, "w":1.25, "h":2 }, | ||
281 | { "x":15, "y":2 }, | 278 | { "x":15, "y":2 }, |
282 | 279 | ||
283 | { "x":0, "y":3, "w":2.25 }, | 280 | { "x":0, "y":3, "w":1.25 }, |
281 | { "x":1.25, "y":3 }, | ||
284 | { "x":2.25, "y":3 }, | 282 | { "x":2.25, "y":3 }, |
285 | { "x":3.25, "y":3 }, | 283 | { "x":3.25, "y":3 }, |
286 | { "x":4.25, "y":3 }, | 284 | { "x":4.25, "y":3 }, |
@@ -299,8 +297,8 @@ | |||
299 | { "x":1.25, "y":4, "w":1.25 }, | 297 | { "x":1.25, "y":4, "w":1.25 }, |
300 | { "x":2.5, "y":4, "w":1.25 }, | 298 | { "x":2.5, "y":4, "w":1.25 }, |
301 | { "x":3.75, "y":4, "w":6.25 }, | 299 | { "x":3.75, "y":4, "w":6.25 }, |
302 | { "x":10, "y":4, "w":1.5 }, | 300 | { "x":10, "y":4, "w":1.25 }, |
303 | { "x":11.5, "y":4, "w":1.5 }, | 301 | { "x":11.25, "y":4, "w":1.25 }, |
304 | { "x":13, "y":4 }, | 302 | { "x":13, "y":4 }, |
305 | { "x":14, "y":4 }, | 303 | { "x":14, "y":4 }, |
306 | { "x":15, "y":4 } | 304 | { "x":15, "y":4 } |
diff --git a/keyboards/portal_66/keymaps/default/keymap.c b/keyboards/portal_66/soldered/keymaps/default/keymap.c index 0269d577b..3260f412a 100644 --- a/keyboards/portal_66/keymaps/default/keymap.c +++ b/keyboards/portal_66/soldered/keymaps/default/keymap.c | |||
@@ -26,13 +26,13 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
26 | 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_END, | 26 | 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_END, |
27 | 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, | 27 | 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, |
28 | 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, | 28 | 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, |
29 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FN), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | 29 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FN), KC_LEFT, KC_DOWN, KC_RGHT |
30 | ), | 30 | ), |
31 | [_FN] = LAYOUT_65_ansi_split_bs( | 31 | [_FN] = LAYOUT_65_ansi_split_bs( |
32 | RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, _______, | 32 | RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, _______, |
33 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 33 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
34 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 34 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
35 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 35 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
36 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | 36 | _______, _______, _______, _______, _______, _______, _______, _______, _______ |
37 | ) | 37 | ) |
38 | }; | 38 | }; |
diff --git a/keyboards/portal_66/keymaps/default/readme.md b/keyboards/portal_66/soldered/keymaps/default/readme.md index 5d87fc7fe..5d87fc7fe 100644 --- a/keyboards/portal_66/keymaps/default/readme.md +++ b/keyboards/portal_66/soldered/keymaps/default/readme.md | |||
diff --git a/keyboards/portal_66/keymaps/via/keymap.c b/keyboards/portal_66/soldered/keymaps/via/keymap.c index 59e038a54..7ea1f44b0 100644 --- a/keyboards/portal_66/keymaps/via/keymap.c +++ b/keyboards/portal_66/soldered/keymaps/via/keymap.c | |||
@@ -28,27 +28,27 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
28 | 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_END, | 28 | 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_END, |
29 | 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, | 29 | 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, |
30 | 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, | 30 | 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, |
31 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_L1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | 31 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_L1), KC_LEFT, KC_DOWN, KC_RGHT |
32 | ), | 32 | ), |
33 | [_L1] = LAYOUT_65_ansi_split_bs( | 33 | [_L1] = LAYOUT_65_ansi_split_bs( |
34 | RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, _______, | 34 | RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, _______, |
35 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 35 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
36 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 36 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
37 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 37 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
38 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | 38 | _______, _______, _______, _______, _______, _______, _______, _______, _______ |
39 | ), | 39 | ), |
40 | [_L2] = LAYOUT_65_ansi_split_bs( | 40 | [_L2] = LAYOUT_65_ansi_split_bs( |
41 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 41 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
42 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 42 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
43 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 43 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
44 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 44 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
45 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | 45 | _______, _______, _______, _______, _______, _______, _______, _______, _______ |
46 | ), | 46 | ), |
47 | [_L3] = LAYOUT_65_ansi_split_bs( | 47 | [_L3] = LAYOUT_65_ansi_split_bs( |
48 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 48 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
49 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 49 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
50 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 50 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
51 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 51 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
52 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | 52 | _______, _______, _______, _______, _______, _______, _______, _______, _______ |
53 | ) | 53 | ) |
54 | }; | 54 | }; |
diff --git a/keyboards/portal_66/soldered/keymaps/via/rules.mk b/keyboards/portal_66/soldered/keymaps/via/rules.mk new file mode 100644 index 000000000..1e5b99807 --- /dev/null +++ b/keyboards/portal_66/soldered/keymaps/via/rules.mk | |||
@@ -0,0 +1 @@ | |||
VIA_ENABLE = yes | |||
diff --git a/keyboards/portal_66/readme.md b/keyboards/portal_66/soldered/readme.md index b87945af3..d6906fbc3 100644 --- a/keyboards/portal_66/readme.md +++ b/keyboards/portal_66/soldered/readme.md | |||
@@ -9,10 +9,10 @@ To reset the keyboard into bootloader mode, press the reset switch on the unders | |||
9 | 9 | ||
10 | Make example for this keyboard (after setting up your build environment): | 10 | Make example for this keyboard (after setting up your build environment): |
11 | 11 | ||
12 | make portal_66:default | 12 | make portal_66/soldered:default |
13 | 13 | ||
14 | Flashing example for this keyboard: | 14 | Flashing example for this keyboard: |
15 | 15 | ||
16 | make portal_66:default:flash | 16 | make portal_66/soldered:default:flash |
17 | 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). | 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). |
diff --git a/keyboards/portal_66/soldered/rules.mk b/keyboards/portal_66/soldered/rules.mk new file mode 100644 index 000000000..9906266f4 --- /dev/null +++ b/keyboards/portal_66/soldered/rules.mk | |||
@@ -0,0 +1,21 @@ | |||
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 = yes # Enable Bootmagic Lite | ||
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 = no # USB Nkey Rollover | ||
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
21 | AUDIO_ENABLE = no # Audio output | ||
diff --git a/keyboards/portal_66/soldered/soldered.c b/keyboards/portal_66/soldered/soldered.c new file mode 100644 index 000000000..a74cd21de --- /dev/null +++ b/keyboards/portal_66/soldered/soldered.c | |||
@@ -0,0 +1,17 @@ | |||
1 | /* Copyright 2021 Matthew Dias | ||
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/portal_66/portal_66.h b/keyboards/portal_66/soldered/soldered.h index 5d3525ae4..9fde7850d 100644 --- a/keyboards/portal_66/portal_66.h +++ b/keyboards/portal_66/soldered/soldered.h | |||
@@ -23,13 +23,13 @@ | |||
23 | k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, k115, \ | 23 | k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, k115, \ |
24 | k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k213, k215, \ | 24 | k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k213, k215, \ |
25 | k300, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, k315, \ | 25 | k300, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, k315, \ |
26 | k400, k401, k402, k406, k409, k410, k411, k412, k413, k415 \ | 26 | k400, k401, k402, k406, k409, k411, k412, k413, k415 \ |
27 | ) { \ | 27 | ) { \ |
28 | { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k013, k014, k015 }, \ | 28 | { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k013, k014, k015 }, \ |
29 | { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, KC_NO, k115 }, \ | 29 | { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, KC_NO, k115 }, \ |
30 | { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, KC_NO, k213, KC_NO, k215 }, \ | 30 | { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, KC_NO, k213, KC_NO, k215 }, \ |
31 | { k300, KC_NO, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, KC_NO, k315 }, \ | 31 | { k300, KC_NO, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, KC_NO, k315 }, \ |
32 | { k400, k401, k402, KC_NO, KC_NO, KC_NO, k406, KC_NO, KC_NO, k409, k410, k411, k412, k413, KC_NO, k415 } \ | 32 | { k400, k401, k402, KC_NO, KC_NO, KC_NO, k406, KC_NO, KC_NO, k409, KC_NO, k411, k412, k413, KC_NO, k415 } \ |
33 | } | 33 | } |
34 | 34 | ||
35 | #define LAYOUT_65_ansi( \ | 35 | #define LAYOUT_65_ansi( \ |
@@ -37,39 +37,39 @@ | |||
37 | k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, k115, \ | 37 | k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, k115, \ |
38 | k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k213, k215, \ | 38 | k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k213, k215, \ |
39 | k300, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, k315, \ | 39 | k300, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, k315, \ |
40 | k400, k401, k402, k406, k409, k410, k411, k412, k413, k415 \ | 40 | k400, k401, k402, k406, k409, k411, k412, k413, k415 \ |
41 | ) { \ | 41 | ) { \ |
42 | { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, KC_NO, k014, k015 }, \ | 42 | { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, KC_NO, k014, k015 }, \ |
43 | { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, KC_NO, k115 }, \ | 43 | { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, KC_NO, k115 }, \ |
44 | { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, KC_NO, k213, KC_NO, k215 }, \ | 44 | { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, KC_NO, k213, KC_NO, k215 }, \ |
45 | { k300, KC_NO, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, KC_NO, k315 }, \ | 45 | { k300, KC_NO, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, KC_NO, k315 }, \ |
46 | { k400, k401, k402, KC_NO, KC_NO, KC_NO, k406, KC_NO, KC_NO, k409, k410, k411, k412, k413, KC_NO, k415 } \ | 46 | { k400, k401, k402, KC_NO, KC_NO, KC_NO, k406, KC_NO, KC_NO, k409, KC_NO, k411, k412, k413, KC_NO, k415 } \ |
47 | } | 47 | } |
48 | 48 | ||
49 | #define LAYOUT_65_ansi_split_bs_2_right_mods( \ | 49 | #define LAYOUT_65_tsangan_split_bs( \ |
50 | k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k013, k014, k015, \ | 50 | k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k013, k014, k015, \ |
51 | k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, k115, \ | 51 | k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, k115, \ |
52 | k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k213, k215, \ | 52 | k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k213, k215, \ |
53 | k300, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, k315, \ | 53 | k300, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, k315, \ |
54 | k400, k401, k402, k406, k409, k411, k412, k413, k415 \ | 54 | k400, k401, k402, k406, k411, k412, k413, k415 \ |
55 | ) { \ | 55 | ) { \ |
56 | { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k013, k014, k015 }, \ | 56 | { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k013, k014, k015 }, \ |
57 | { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, KC_NO, k115 }, \ | 57 | { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, KC_NO, k115 }, \ |
58 | { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, KC_NO, k213, KC_NO, k215 }, \ | 58 | { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, KC_NO, k213, KC_NO, k215 }, \ |
59 | { k300, KC_NO, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, KC_NO, k315 }, \ | 59 | { k300, KC_NO, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, KC_NO, k315 }, \ |
60 | { k400, k401, k402, KC_NO, KC_NO, KC_NO, k406, KC_NO, KC_NO, k409, KC_NO, k411, k412, k413, KC_NO, k415 } \ | 60 | { k400, k401, k402, KC_NO, KC_NO, KC_NO, k406, KC_NO, KC_NO, KC_NO, KC_NO, k411, k412, k413, KC_NO, k415 } \ |
61 | } | 61 | } |
62 | 62 | ||
63 | #define LAYOUT_65_ansi_2_right_mods( \ | 63 | #define LAYOUT_65_iso( \ |
64 | k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k014, k015, \ | 64 | k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k014, k015, \ |
65 | k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, k115, \ | 65 | k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k115, \ |
66 | k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k213, k215, \ | 66 | k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, k213, k215, \ |
67 | k300, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, k315, \ | 67 | k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, k315, \ |
68 | k400, k401, k402, k406, k409, k411, k412, k413, k415 \ | 68 | k400, k401, k402, k406, k409, k411, k412, k413, k415 \ |
69 | ) { \ | 69 | ) { \ |
70 | { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, KC_NO, k014, k015 }, \ | 70 | { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, KC_NO, k014, k015 }, \ |
71 | { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, KC_NO, k115 }, \ | 71 | { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, KC_NO, KC_NO, k115 }, \ |
72 | { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, KC_NO, k213, KC_NO, k215 }, \ | 72 | { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, k213, KC_NO, k215 }, \ |
73 | { k300, KC_NO, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, KC_NO, k315 }, \ | 73 | { k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, k313, KC_NO, k315 }, \ |
74 | { k400, k401, k402, KC_NO, KC_NO, KC_NO, k406, KC_NO, KC_NO, k409, KC_NO, k411, k412, k413, KC_NO, k415 } \ | 74 | { k400, k401, k402, KC_NO, KC_NO, KC_NO, k406, KC_NO, KC_NO, k409, KC_NO, k411, k412, k413, KC_NO, k415 } \ |
75 | } | 75 | } |