diff options
| author | QMK Bot <hello@qmk.fm> | 2023-03-13 05:34:07 +0000 |
|---|---|---|
| committer | QMK Bot <hello@qmk.fm> | 2023-03-13 05:34:07 +0000 |
| commit | 183e99f6389880f09c2108a7a17027a4df6d65b8 (patch) | |
| tree | 4133d69817e3549db2395af5ef505c7f5bbfe1f2 | |
| parent | b74f2c7b86d329831b30fd4fef9833dd34d8078d (diff) | |
| parent | e0bd6fac10883fdce7d7c5b0c47fe454c9f2f0aa (diff) | |
Merge remote-tracking branch 'origin/master' into develop
| -rw-r--r-- | keyboards/ferris/sweep/config.h | 23 | ||||
| -rw-r--r-- | keyboards/ferris/sweep/info.json | 10 | ||||
| -rw-r--r-- | keyboards/ferris/sweep/rules.mk | 15 | ||||
| -rw-r--r-- | keyboards/ferris/sweep/sweep.c | 21 |
4 files changed, 20 insertions, 49 deletions
diff --git a/keyboards/ferris/sweep/config.h b/keyboards/ferris/sweep/config.h index a80d5a2824..35cf8d4151 100644 --- a/keyboards/ferris/sweep/config.h +++ b/keyboards/ferris/sweep/config.h | |||
| @@ -1,21 +1,8 @@ | |||
| 1 | /* Copyright 2018-2020 | 1 | // Copyright 2018-2020 |
| 2 | ENDO Katsuhiro <ka2hiro@curlybracket.co.jp> | 2 | // ENDO Katsuhiro <ka2hiro@curlybracket.co.jp> |
| 3 | David Philip Barr <@davidphilipbarr> | 3 | // David Philip Barr <@davidphilipbarr> |
| 4 | Pierre Chevalier <pierrechevalier83@gmail.com> | 4 | // Pierre Chevalier <pierrechevalier83@gmail.com> |
| 5 | 5 | // SPDX-License-Identifier: GPL-2.0+ | |
| 6 | This program is free software: you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation, either version 2 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | This program is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 18 | */ | ||
| 19 | 6 | ||
| 20 | #pragma once | 7 | #pragma once |
| 21 | 8 | ||
diff --git a/keyboards/ferris/sweep/info.json b/keyboards/ferris/sweep/info.json index 3e3eeffe76..567ef16a86 100644 --- a/keyboards/ferris/sweep/info.json +++ b/keyboards/ferris/sweep/info.json | |||
| @@ -6,8 +6,13 @@ | |||
| 6 | "pid": "0x3939", | 6 | "pid": "0x3939", |
| 7 | "device_version": "0.0.1" | 7 | "device_version": "0.0.1" |
| 8 | }, | 8 | }, |
| 9 | "processor": "atmega32u4", | 9 | "development_board": "promicro", |
| 10 | "bootloader": "caterina", | 10 | "features": { |
| 11 | "bootmagic": true, | ||
| 12 | "extrakey": true, | ||
| 13 | "mousekey": true, | ||
| 14 | "unicode": true | ||
| 15 | }, | ||
| 11 | "matrix_pins": { | 16 | "matrix_pins": { |
| 12 | "direct": [ | 17 | "direct": [ |
| 13 | ["E6", "F7", "F6", "F5", "F4"], | 18 | ["E6", "F7", "F6", "F5", "F4"], |
| @@ -17,6 +22,7 @@ | |||
| 17 | ] | 22 | ] |
| 18 | }, | 23 | }, |
| 19 | "split": { | 24 | "split": { |
| 25 | "enabled": true, | ||
| 20 | "soft_serial_pin": "D2", | 26 | "soft_serial_pin": "D2", |
| 21 | "bootmagic": { | 27 | "bootmagic": { |
| 22 | "matrix": [4, 4] | 28 | "matrix": [4, 4] |
diff --git a/keyboards/ferris/sweep/rules.mk b/keyboards/ferris/sweep/rules.mk index ebc2feb78e..6e7633bfe0 100644 --- a/keyboards/ferris/sweep/rules.mk +++ b/keyboards/ferris/sweep/rules.mk | |||
| @@ -1,14 +1 @@ | |||
| 1 | # Build Options | # This file intentionally left blank | |
| 2 | # change yes to no to disable | ||
| 3 | # | ||
| 4 | BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite | ||
| 5 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
| 6 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 7 | CONSOLE_ENABLE = no # Console for debug | ||
| 8 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 9 | NKRO_ENABLE = no # Enable N-Key Rollover | ||
| 10 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 11 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
| 12 | UNICODE_ENABLE = yes # Unicode | ||
| 13 | AUDIO_ENABLE = no # Audio output | ||
| 14 | SPLIT_KEYBOARD = yes # Use shared split_common code | ||
diff --git a/keyboards/ferris/sweep/sweep.c b/keyboards/ferris/sweep/sweep.c index 0d63f80cc1..e4d831f914 100644 --- a/keyboards/ferris/sweep/sweep.c +++ b/keyboards/ferris/sweep/sweep.c | |||
| @@ -1,18 +1,9 @@ | |||
| 1 | /* Copyright 2018-2020 ENDO Katsuhiro <ka2hiro@curlybracket.co.jp> David Philip Barr <@davidphilipbarr> Pierre Chevalier <pierrechevalier83@gmail.com> | 1 | // Copyright 2018-2020 |
| 2 | * | 2 | // ENDO Katsuhiro <ka2hiro@curlybracket.co.jp> |
| 3 | * This program is free software: you can redistribute it and/or modify | 3 | // David Philip Barr <@davidphilipbarr> |
| 4 | * it under the terms of the GNU General Public License as published by | 4 | // Pierre Chevalier <pierrechevalier83@gmail.com> |
| 5 | * the Free Software Foundation, either version 2 of the License, or | 5 | // SPDX-License-Identifier: GPL-2.0+ |
| 6 | * (at your option) any later version. | 6 | |
| 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 "quantum.h" | 7 | #include "quantum.h" |
| 17 | 8 | ||
| 18 | #ifdef SWAP_HANDS_ENABLE | 9 | #ifdef SWAP_HANDS_ENABLE |
