forked from smplman/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rk61 rk68 persistent default layout (#371)
* Added support for RK61-RGB * Added readme.md * Fixed some typos. * Minor changes to VIA keymap * Added support for RK68 (RK855) with VID 0C45 and PID 024F or 8008 * Moved RESET to Fn+CTRL on RK61-RGB * Corrected RGB LED pin order * Updated readme.md file * Moved readme.md images to cloud * Keymap changes * Moved RGB coords and flags into info.json * Removed unnecessary define for maximum brightness (default value is identical) * Update keyboards/royal_kludge/rk61_rgb/config_led.h Removed outdated defines not needed. Co-authored-by: dexter93 <d3xter93@gmail.com> * Removed outdated defines not needed. * Removed NKRO force option * Removed leftover flag * Updated license header and added missing one * Removed empty VIA layers as they are automatically added. * Update keyboards/royal_kludge/rk61_rgb/config_led.h Removed obsolete flags. Co-authored-by: dexter93 <d3xter93@gmail.com> * Moved Led coords and flags into info.json * Cleanup * Moved _user function into keymaps. Small corrections * More cleanup * Update keyboards/royal_kludge/rk68_rgb/rules.mk removing file no longer needed Co-authored-by: dexter93 <d3xter93@gmail.com> * Code cleanup * Moved layout limits into config.h * Moved layer count limit to specific via keymap folder. * Added persistent default MAC/WIN layers * Code cleanup --------- Co-authored-by: dexter93 <d3xter93@gmail.com>
- Loading branch information
Showing
8 changed files
with
677 additions
and
85 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
197 changes: 171 additions & 26 deletions
197
keyboards/royal_kludge/rk61_rgb/keymaps/default/keymap.c
Large diffs are not rendered by default.
Oops, something went wrong.
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,19 @@ | ||
/* Copyright (C) 2023 Fernando Birra <fernando.birra@gmail.com> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#define WEAR_LEVELING_SN32_EMULATION_PAGE_COUNT 32 |
Large diffs are not rendered by default.
Oops, something went wrong.
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
172 changes: 156 additions & 16 deletions
172
keyboards/royal_kludge/rk68_rgb/keymaps/default/keymap.c
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -16,4 +16,4 @@ | |
|
||
#pragma once | ||
|
||
#define DYNAMIC_KEYMAP_LAYER_COUNT 3 | ||
#define WEAR_LEVELING_SN32_EMULATION_PAGE_COUNT 32 |
Large diffs are not rendered by default.
Oops, something went wrong.