forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into develop
- Loading branch information
Showing
20 changed files
with
458 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
CompileFlags: | ||
Add: [-Wno-unknown-attributes, -Wno-maybe-uninitialized, -Wno-unknown-warning-option] | ||
Remove: [-W*, -mcall-prologues] | ||
Remove: [-W*, -mmcu=*, -mcpu=*, -mfpu=*, -mfloat-abi=*, -mno-unaligned-access, -mno-thumb-interwork, -mcall-prologues] | ||
Compiler: clang |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# 60_ansi_arrow_split_bs | ||
|
||
LAYOUT_60_ansi_arrow_split_bs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# 60_iso_arrow | ||
|
||
LAYOUT_60_iso_arrow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# 60_iso_arrow_split_bs | ||
|
||
LAYOUT_60_iso_arrow_split_bs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
layouts/default/60_ansi_arrow_split_bs/default_60_ansi_arrow_split_bs/keymap.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Copyright 2023 QMK | ||
// SPDX-License-Identifier: GPL-2.0-or-later/ | ||
|
||
#include QMK_KEYBOARD_H | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
/* | ||
* ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐ | ||
* │Esc│ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ + │ \ │ ` │ | ||
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤ | ||
* │ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │ Bspc│ | ||
* ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ | ||
* │ Caps │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ Enter │ | ||
* ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┬───┤ | ||
* │ Shift │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ Shift│ ↑ │ / │ | ||
* ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴──┬┴──┬───┼───┼───┤ | ||
* │Ctrl│GUI │Alt │ │Alt│GUI│ ← │ ↓ │ → │ | ||
* └────┴────┴────┴────────────────────────┴───┴───┴───┴───┴───┘ | ||
*/ | ||
[0] = LAYOUT_60_ansi_arrow_split_bs( | ||
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_BSLS, KC_GRV, | ||
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_BSPC, | ||
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_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_RSFT, KC_UP, KC_SLSH, | ||
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_LEFT, KC_DOWN, KC_RGHT | ||
) | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
{ | ||
"keyboard_name": "60% ANSI Arrow Layout with Split Backspace", | ||
"url": "", | ||
"maintainer": "qmk", | ||
"layouts": { | ||
"LAYOUT_60_ansi_arrow_split_bs": { | ||
"layout": [ | ||
{"x": 0, "y": 0}, | ||
{"x": 1, "y": 0}, | ||
{"x": 2, "y": 0}, | ||
{"x": 3, "y": 0}, | ||
{"x": 4, "y": 0}, | ||
{"x": 5, "y": 0}, | ||
{"x": 6, "y": 0}, | ||
{"x": 7, "y": 0}, | ||
{"x": 8, "y": 0}, | ||
{"x": 9, "y": 0}, | ||
{"x": 10, "y": 0}, | ||
{"x": 11, "y": 0}, | ||
{"x": 12, "y": 0}, | ||
{"x": 13, "y": 0}, | ||
{"x": 14, "y": 0}, | ||
|
||
{"x": 0, "y": 1, "w": 1.5}, | ||
{"x": 1.5, "y": 1}, | ||
{"x": 2.5, "y": 1}, | ||
{"x": 3.5, "y": 1}, | ||
{"x": 4.5, "y": 1}, | ||
{"x": 5.5, "y": 1}, | ||
{"x": 6.5, "y": 1}, | ||
{"x": 7.5, "y": 1}, | ||
{"x": 8.5, "y": 1}, | ||
{"x": 9.5, "y": 1}, | ||
{"x": 10.5, "y": 1}, | ||
{"x": 11.5, "y": 1}, | ||
{"x": 12.5, "y": 1}, | ||
{"x": 13.5, "y": 1, "w": 1.5}, | ||
|
||
{"x": 0, "y": 2, "w": 1.75}, | ||
{"x": 1.75, "y": 2}, | ||
{"x": 2.75, "y": 2}, | ||
{"x": 3.75, "y": 2}, | ||
{"x": 4.75, "y": 2}, | ||
{"x": 5.75, "y": 2}, | ||
{"x": 6.75, "y": 2}, | ||
{"x": 7.75, "y": 2}, | ||
{"x": 8.75, "y": 2}, | ||
{"x": 9.75, "y": 2}, | ||
{"x": 10.75, "y": 2}, | ||
{"x": 11.75, "y": 2}, | ||
{"x": 12.75, "y": 2, "w": 2.25}, | ||
|
||
{"x": 0, "y": 3, "w": 2.25}, | ||
{"x": 2.25, "y": 3}, | ||
{"x": 3.25, "y": 3}, | ||
{"x": 4.25, "y": 3}, | ||
{"x": 5.25, "y": 3}, | ||
{"x": 6.25, "y": 3}, | ||
{"x": 7.25, "y": 3}, | ||
{"x": 8.25, "y": 3}, | ||
{"x": 9.25, "y": 3}, | ||
{"x": 10.25, "y": 3}, | ||
{"x": 11.25, "y": 3, "w": 1.75}, | ||
{"x": 13, "y": 3}, | ||
{"x": 14, "y": 3}, | ||
|
||
{"x": 0, "y": 4, "w": 1.25}, | ||
{"x": 1.25, "y": 4, "w": 1.25}, | ||
{"x": 2.5, "y": 4, "w": 1.25}, | ||
{"x": 3.75, "y": 4, "w": 6.25}, | ||
{"x": 10, "y": 4}, | ||
{"x": 11, "y": 4}, | ||
{"x": 12, "y": 4}, | ||
{"x": 13, "y": 4}, | ||
{"x": 14, "y": 4} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[{a:7},"","","","","","","","","","","","","","",""], | ||
[{w:1.5},"","","","","","","","","","","","","",{w:1.5},""], | ||
[{w:1.75},"","","","","","","","","","","","",{w:2.25},""], | ||
[{w:2.25},"","","","","","","","","","",{w:1.75},"","",""], | ||
[{w:1.25},"",{w:1.25},"",{w:1.25},"",{w:6.25},"","","","","",""] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# 60_ansi_arrow_split_bs | ||
|
||
LAYOUT_60_ansi_arrow_split_bs |
27 changes: 27 additions & 0 deletions
27
layouts/default/60_iso_arrow/default_60_iso_arrow/keymap.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Copyright 2023 QMK | ||
// SPDX-License-Identifier: GPL-2.0-or-later/ | ||
|
||
#include QMK_KEYBOARD_H | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
/* | ||
* ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ | ||
* │Esc│ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ + │ Backsp│ | ||
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ | ||
* │ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │ │ | ||
* ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐ Ent│ | ||
* │ Caps │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ # │ │ | ||
* ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬──┴┬───┤ | ||
* │Shft│ \ │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ Shift│ ↑ │ / │ | ||
* ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴──┬┴──┬───┼───┼───┤ | ||
* │Ctrl│GUI │Alt │ │Alt│GUI│ ← │ ↓ │ → │ | ||
* └────┴────┴────┴────────────────────────┴───┴───┴───┴───┴───┘ | ||
*/ | ||
[0] = LAYOUT_60_iso_arrow( | ||
QK_GESC, 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_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_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NUHS, KC_ENT, | ||
KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_RSFT, KC_UP, KC_SLSH, | ||
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_LEFT, KC_DOWN, KC_RGHT | ||
) | ||
}; |
Oops, something went wrong.