aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/format.yaml2
-rw-r--r--keyboards/the_uni/config.h52
-rw-r--r--keyboards/the_uni/info.json41
-rw-r--r--keyboards/the_uni/keymaps/default/keymap.c77
-rw-r--r--keyboards/the_uni/keymaps/qwerty/keymap.c77
-rw-r--r--keyboards/the_uni/readme.md19
-rw-r--r--keyboards/the_uni/rules.mk21
-rw-r--r--keyboards/the_uni/the_uni.c18
-rw-r--r--keyboards/the_uni/the_uni.h30
-rw-r--r--keyboards/yeehaw/keymaps/via/keymap.c24
-rw-r--r--lib/python/qmk/cli/cformat.py22
11 files changed, 364 insertions, 19 deletions
diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml
index 6d13e7894..c17a04a54 100644
--- a/.github/workflows/format.yaml
+++ b/.github/workflows/format.yaml
@@ -34,7 +34,7 @@ jobs:
34 - name: Run qmk cformat and qmk pyformat 34 - name: Run qmk cformat and qmk pyformat
35 shell: 'bash {0}' 35 shell: 'bash {0}'
36 run: | 36 run: |
37 qmk cformat -n $(< ~/files.txt) 37 qmk cformat --core-only -n $(< ~/files.txt)
38 cformat_exit=$? 38 cformat_exit=$?
39 qmk pyformat -n 39 qmk pyformat -n
40 pyformat_exit=$? 40 pyformat_exit=$?
diff --git a/keyboards/the_uni/config.h b/keyboards/the_uni/config.h
new file mode 100644
index 000000000..ff965d774
--- /dev/null
+++ b/keyboards/the_uni/config.h
@@ -0,0 +1,52 @@
1/*
2Copyright 2021 Peter C. Park <peter@stenokeyboards.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along 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 0x9000
24#define PRODUCT_ID 0x0001
25#define DEVICE_VER 0x0001
26#define MANUFACTURER stenokeyboards
27#define PRODUCT The Uni
28
29/* key matrix size */
30#define MATRIX_ROWS 3
31#define MATRIX_COLS 11
32
33/* key matrix pins */
34#define MATRIX_ROW_PINS { F4, B2, B6 }
35#define MATRIX_COL_PINS { F5, F6, F7, B1, B3, B5, B4, E6, D7, C6, D4 }
36#define UNUSED_PINS
37
38/* COL2ROW or ROW2COL */
39#define DIODE_DIRECTION COL2ROW
40
41/* Set 0 if debouncing isn't needed */
42#define DEBOUNCE 5
43
44/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
45#define LOCKING_SUPPORT_ENABLE
46
47/* Locking resynchronize hack */
48#define LOCKING_RESYNC_ENABLE
49
50
51/*force the nkro if it does not work*/
52#define FORCE_NKRO
diff --git a/keyboards/the_uni/info.json b/keyboards/the_uni/info.json
new file mode 100644
index 000000000..86e2d5cdb
--- /dev/null
+++ b/keyboards/the_uni/info.json
@@ -0,0 +1,41 @@
1{
2 "keyboard_name": "The Uni",
3 "url": "https://www.stenokeyboards.com",
4 "maintainer": "qmk",
5 "width": 13,
6 "height": 4,
7 "layouts": {
8 "LAYOUT": {
9 "layout": [
10 { "x": 0, "y": 0 },
11 { "x": 1, "y": 0 },
12 { "x": 2, "y": 0 },
13 { "x": 3, "y": 0 },
14 { "x": 4, "y": 0 },
15 { "x": 7, "y": 0 },
16 { "x": 8, "y": 0 },
17 { "x": 9, "y": 0 },
18 { "x": 10, "y": 0 },
19 { "x": 11, "y": 0 },
20 { "x": 12, "y": 0 },
21 { "x": 0, "y": 1 },
22 { "x": 1, "y": 1 },
23 { "x": 2, "y": 1 },
24 { "x": 3, "y": 1 },
25 { "x": 4, "y": 1 },
26 { "x": 7, "y": 1 },
27 { "x": 8, "y": 1 },
28 { "x": 9, "y": 1 },
29 { "x": 10, "y": 1 },
30 { "x": 11, "y": 1 },
31 { "x": 12, "y": 1 },
32 { "x": 2, "y": 3 },
33 { "x": 3, "y": 3 },
34 { "x": 4, "y": 3 },
35 { "x": 7, "y": 3 },
36 { "x": 8, "y": 3 },
37 { "x": 9, "y": 3 }
38 ]
39 }
40 }
41}
diff --git a/keyboards/the_uni/keymaps/default/keymap.c b/keyboards/the_uni/keymaps/default/keymap.c
new file mode 100644
index 000000000..01674d948
--- /dev/null
+++ b/keyboards/the_uni/keymaps/default/keymap.c
@@ -0,0 +1,77 @@
1/*
2Copyright 2021 Peter C. Park <peter@stenokeyboards.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#include QMK_KEYBOARD_H
19#include "keymap_steno.h"
20
21enum uni_layers {
22/*
23 _QWERTY,
24 _CHOOSE,
25*/
26 _PLOVER,
27};
28
29/*
30enum uni_keycodes {
31 PLOVER,
32 QWERTY
33};
34*/
35
36const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
37/*
38 [_QWERTY] = LAYOUT(
39 KC_Q, KC_W, KC_E, KC_R, LT(_CHOOSE, KC_T), KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC,
40 KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
41 KC_1, KC_C, KC_V, KC_N, KC_M, KC_2),
42
43 [_CHOOSE] = LAYOUT(
44 _______, _______, _______, _______, _______, PLOVER, _______, _______, _______, _______, _______,
45 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
46 _______, _______, _______, _______, _______, _______),
47*/
48 [_PLOVER] = LAYOUT(
49 STN_S1, STN_TL, STN_PL, STN_HL, STN_ST1, STN_ST3, STN_FR, STN_PR, STN_LR, STN_TR, STN_DR ,
50 STN_S2, STN_KL, STN_WL, STN_RL, STN_ST2, STN_ST4, STN_RR, STN_BR, STN_GR, STN_SR, STN_ZR ,
51 STN_N1, STN_A, STN_O, STN_E, STN_U, STN_N2),
52
53};
54
55/*
56switch (keycode) {
57 bool process_record_user(uint16_t keycode, keyrecord_t *record) {
58 case PLOVER:
59 if (!record->event.pressed) {
60 layer_on(_PLOVER);
61 }
62 return false;
63 break;
64 case QWERTY:
65 if (!record->event.pressed) {
66 layer_on(_QWERTY);
67 }
68 return false;
69 break;
70 }
71 return true;
72 }
73*/
74
75 void matrix_init_user() {
76 steno_set_mode(STENO_MODE_GEMINI); // or STENO_MODE_BOLT
77 }
diff --git a/keyboards/the_uni/keymaps/qwerty/keymap.c b/keyboards/the_uni/keymaps/qwerty/keymap.c
new file mode 100644
index 000000000..3eaac57f3
--- /dev/null
+++ b/keyboards/the_uni/keymaps/qwerty/keymap.c
@@ -0,0 +1,77 @@
1/*
2Copyright 2021 Peter C. Park <peter@stenokeyboards.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#include QMK_KEYBOARD_H
19//#include "keymap_steno.h"
20
21enum uni_layers {
22 _QWERTY,
23/*
24 _CHOOSE,
25 _PLOVER,
26*/
27};
28
29/*
30enum uni_keycodes {
31 PLOVER,
32 QWERTY
33};
34*/
35
36const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
37 [_QWERTY] = LAYOUT(
38 KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC,
39 KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
40 KC_1, KC_C, KC_V, KC_N, KC_M, KC_2),
41/*
42
43 [_CHOOSE] = LAYOUT(
44 _______, _______, _______, _______, _______, PLOVER, _______, _______, _______, _______, _______,
45 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
46 _______, _______, _______, _______, _______, _______),
47 [_PLOVER] = LAYOUT(
48 STN_S1, STN_TL, STN_PL, STN_HL, STN_ST1, STN_ST3, STN_FR, STN_PR, STN_LR, STN_TR, STN_DR ,
49 STN_S2, STN_KL, STN_WL, STN_RL, STN_ST2, STN_ST4, STN_RR, STN_BR, STN_GR, STN_SR, STN_ZR ,
50 STN_N1, STN_A, STN_O, STN_E, STN_U, STN_N2),
51*/
52
53};
54
55/*
56switch (keycode) {
57 bool process_record_user(uint16_t keycode, keyrecord_t *record) {
58 case PLOVER:
59 if (!record->event.pressed) {
60 layer_on(_PLOVER);
61 }
62 return false;
63 break;
64 case QWERTY:
65 if (!record->event.pressed) {
66 layer_on(_QWERTY);
67 }
68 return false;
69 break;
70 }
71 return true;
72 }
73*/
74
75 void matrix_init_user() {
76 //steno_set_mode(STENO_MODE_GEMINI); // or STENO_MODE_BOLT
77 }
diff --git a/keyboards/the_uni/readme.md b/keyboards/the_uni/readme.md
new file mode 100644
index 000000000..72b5c5d2a
--- /dev/null
+++ b/keyboards/the_uni/readme.md
@@ -0,0 +1,19 @@
1# The Uni
2
3
4![The Uni](https://raw.githubusercontent.com/petercpark/The_Uni/main/Pics/layout.png)
5![The Uni Closeup](https://github.com/petercpark/The_Uni/blob/main/Pics/close-up-uni.jpg?raw=true)
6
7A compact unibody split ortholinear keyboard made specifically for stenography.
8
9
10- Keyboard Maintainer: [Peter C. Park](https://github.com/petercpark)
11- Link to Keyboard Files: [The_Uni](https://github.com/petercpark/The_Uni)
12- Hardware Supported: The Uni v1 and v2 (pro micro or equivalent)
13- Hardware Availability: [website](https://www.stenokeyboards.com)
14
15 Make example for this keyboard (after setting up your build environment):
16 ​To enter the bootloader, short the rst and gnd pins with a conductive material such as a tweezer or a wire. Uni v2 will have reset pads next to the pro micro so you can short these pads to reset the pro micro.
17 make the_uni:default
18
19 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/the_uni/rules.mk b/keyboards/the_uni/rules.mk
new file mode 100644
index 000000000..1422818bb
--- /dev/null
+++ b/keyboards/the_uni/rules.mk
@@ -0,0 +1,21 @@
1# MCU name
2MCU = atmega32u4
3
4# Bootloader
5BOOTLOADER = atmel-dfu
6
7
8# Build Options
9# comment out to disable the options.
10#
11BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
12CONSOLE_ENABLE = no # Console for debug
13COMMAND_ENABLE = no # Commands for debug and configuration
14SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
15NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
16BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
17RGBLIGHT_ENABLE = no
18FORCE_NKRO = yes
19EXTRAKEY_ENABLE = no
20MOUSEKEY_ENABLE = no # Mouse keys
21STENO_ENABLE = yes
diff --git a/keyboards/the_uni/the_uni.c b/keyboards/the_uni/the_uni.c
new file mode 100644
index 000000000..b99b06830
--- /dev/null
+++ b/keyboards/the_uni/the_uni.c
@@ -0,0 +1,18 @@
1/*
2Copyright 2021 Peter C. Park <peter@stenokeyboards.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#include "the_uni.h"
diff --git a/keyboards/the_uni/the_uni.h b/keyboards/the_uni/the_uni.h
new file mode 100644
index 000000000..9371c3a24
--- /dev/null
+++ b/keyboards/the_uni/the_uni.h
@@ -0,0 +1,30 @@
1/*
2Copyright 2021 Peter C. Park <peter@stenokeyboards.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20#include "quantum.h"
21
22#define LAYOUT( \
23 K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, \
24 K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, \
25 K202, K203, K204, K205, K206, K207 \
26) { \
27 { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010 }, \
28 { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110 }, \
29 { KC_NO, KC_NO, K202, K203, K204, K205, K206, K207, KC_NO, KC_NO, KC_NO } \
30}
diff --git a/keyboards/yeehaw/keymaps/via/keymap.c b/keyboards/yeehaw/keymaps/via/keymap.c
index 43fc3aee5..e1d10bf0e 100644
--- a/keyboards/yeehaw/keymaps/via/keymap.c
+++ b/keyboards/yeehaw/keymaps/via/keymap.c
@@ -43,21 +43,21 @@ KC_TRNS, RGB_SAD, RGB_M_P, RGB_MOD, RGB_SPD,
43 ), 43 ),
44 44
45 [2] = LAYOUT( 45 [2] = LAYOUT(
46 ____, 46 _______,
47 ____, 47 _______,
48 ____, ____, ____, ____, 48 _______, _______, _______, _______,
49____, ____, ____, ____, ____, 49_______, _______, _______, _______, _______,
50 ____, ____, 50 _______, _______,
51 ____ 51 _______
52 ), 52 ),
53 53
54 [3] = LAYOUT( 54 [3] = LAYOUT(
55 ____, 55 _______,
56 ____, 56 _______,
57 ____, ____, ____, ____, 57 _______, _______, _______, _______,
58____, ____, ____, ____, ____, 58_______, _______, _______, _______, _______,
59 ____, ____, 59 _______, _______,
60 ____ 60 _______
61 ), 61 ),
62 62
63}; 63};
diff --git a/lib/python/qmk/cli/cformat.py b/lib/python/qmk/cli/cformat.py
index 9333aaec4..15158d9c7 100644
--- a/lib/python/qmk/cli/cformat.py
+++ b/lib/python/qmk/cli/cformat.py
@@ -65,11 +65,21 @@ def cformat_run(files):
65 return False 65 return False
66 66
67 67
68def filter_files(files): 68def filter_files(files, core_only=False):
69 """Yield only files to be formatted and skip the rest 69 """Yield only files to be formatted and skip the rest
70 """ 70 """
71 if core_only:
72 # Filter non-core files
73 for index, file in enumerate(files):
74 # The following statement checks each file to see if the file path is
75 # - in the core directories
76 # - not in the ignored directories
77 if not any(i in str(file) for i in core_dirs) or any(i in str(file) for i in ignored):
78 files[index] = None
79 cli.log.debug("Skipping non-core file %s, as '--core-only' is used.", file)
80
71 for file in files: 81 for file in files:
72 if file.name.split('.')[-1] in c_file_suffixes: 82 if file and file.name.split('.')[-1] in c_file_suffixes:
73 yield file 83 yield file
74 else: 84 else:
75 cli.log.debug('Skipping file %s', file) 85 cli.log.debug('Skipping file %s', file)
@@ -78,6 +88,7 @@ def filter_files(files):
78@cli.argument('-n', '--dry-run', arg_only=True, action='store_true', help="Flag only, don't automatically format.") 88@cli.argument('-n', '--dry-run', arg_only=True, action='store_true', help="Flag only, don't automatically format.")
79@cli.argument('-b', '--base-branch', default='origin/master', help='Branch to compare to diffs to.') 89@cli.argument('-b', '--base-branch', default='origin/master', help='Branch to compare to diffs to.')
80@cli.argument('-a', '--all-files', arg_only=True, action='store_true', help='Format all core files.') 90@cli.argument('-a', '--all-files', arg_only=True, action='store_true', help='Format all core files.')
91@cli.argument('--core-only', arg_only=True, action='store_true', help='Format core files only.')
81@cli.argument('files', nargs='*', arg_only=True, type=normpath, completer=FilesCompleter('.c'), help='Filename(s) to format.') 92@cli.argument('files', nargs='*', arg_only=True, type=normpath, completer=FilesCompleter('.c'), help='Filename(s) to format.')
82@cli.subcommand("Format C code according to QMK's style.", hidden=False if cli.config.user.developer else True) 93@cli.subcommand("Format C code according to QMK's style.", hidden=False if cli.config.user.developer else True)
83def cformat(cli): 94def cformat(cli):
@@ -85,7 +96,7 @@ def cformat(cli):
85 """ 96 """
86 # Find the list of files to format 97 # Find the list of files to format
87 if cli.args.files: 98 if cli.args.files:
88 files = list(filter_files(cli.args.files)) 99 files = list(filter_files(cli.args.files, cli.args.core_only))
89 100
90 if not files: 101 if not files:
91 cli.log.error('No C files in filelist: %s', ', '.join(map(str, cli.args.files))) 102 cli.log.error('No C files in filelist: %s', ', '.join(map(str, cli.args.files)))
@@ -96,8 +107,7 @@ def cformat(cli):
96 107
97 elif cli.args.all_files: 108 elif cli.args.all_files:
98 all_files = c_source_files(core_dirs) 109 all_files = c_source_files(core_dirs)
99 # The following statement checks each file to see if the file path is in the ignored directories. 110 files = list(filter_files(all_files, True))
100 files = [file for file in all_files if not any(i in str(file) for i in ignored)]
101 111
102 else: 112 else:
103 git_diff_cmd = ['git', 'diff', '--name-only', cli.args.base_branch, *core_dirs] 113 git_diff_cmd = ['git', 'diff', '--name-only', cli.args.base_branch, *core_dirs]
@@ -117,7 +127,7 @@ def cformat(cli):
117 127
118 # Sanity check 128 # Sanity check
119 if not files: 129 if not files:
120 cli.log.error('No changed files detected. Use "qmk cformat -a" to format all files') 130 cli.log.error('No changed files detected. Use "qmk cformat -a" to format all core files')
121 return False 131 return False
122 132
123 # Run clang-format on the files we've found 133 # Run clang-format on the files we've found