aboutsummaryrefslogtreecommitdiff
path: root/quantum/dynamic_keymap.c
diff options
context:
space:
mode:
authorWilba6582 <Wilba6582@users.noreply.github.com>2018-09-14 04:37:13 +1000
committerJack Humbert <jack.humb@gmail.com>2018-09-13 14:37:13 -0400
commit48a992f1c037658bbacccefd2709ffdcda8bb345 (patch)
treef1583b0eaef1c366b896a11db6f8dd17ce2da9b5 /quantum/dynamic_keymap.c
parent170de1273cde78d93b3f955aca133a4d690742b2 (diff)
downloadqmk_firmware-48a992f1c037658bbacccefd2709ffdcda8bb345.tar.gz
qmk_firmware-48a992f1c037658bbacccefd2709ffdcda8bb345.zip
Zeal60/Zeal65/M60-A implementation (#3879)
* Initial version of zeal60 * WIP * Fixes issue #900 * Adding RGB underglow functionality. Fixed a compile-time conflict caused by enabling RGB underglow functionality. * Refactor RPC protocol * Fix last merge * README for RGB underglow updated. * Additional README changes. * Adding RGBW strip software-based current-limiting functionality. * RGBW current-limiting functionality should be handled by RGBSTRIP_MAX_CURRENT_PER_LIGHT instead. * Updated README to reflect implementation of built-in current limiting. * Keymap readability improvements. * Minor keymap improvements. * Fixed LED driver init sequence, formatting * Dimming implementation tested, working. * Stab LEDs synced with spacebar hits in effects. * RGB underglow tested and functional. Simplified README for RGB underglow. * Undid accidental file deletion from previous merge conflict. Safer values for RGB underglow. * Improved arrow key positions in keymap. * Added functionality to correct uneven RGB underglow. Refactored related code. * Reverted to safer values for underglow. * Changes for v0.3 * Custom LED brightness scaling will take place after current adjustment in order to avoid being overridden. * Create keymap.c Added split backspace and split shift to ISO layout * Create config.h Turned on LEDs for new layout * Fixed bug where left spacebar stabilizer LED (LC06) would adopt color of row above. * Added hhkb_wilba keymap * Update keymap.c * Update keymap.c * Update keymap.c * Added indicators, full param setting via host * Added "mousekey" layout * Added Zeal65 support, factory test mode * Keycode safe range changed, caused bugs * Bumped EEPROM version due to change in QMK keycodes * Disable HHKB "blocked" LEDs if KC_NO in keymap * Added "disable_hhkb_blocker_leds" * Required overridden function for keymaps in EEPROM * Added polar coordinate mapping, effect speed * Force Raw HID interface number to 1 always * Fixed last merge from master * Added effect speed to default keymaps * add BACKLIGHT_ prefix to vars * add BACKLIGHT_ prefix to vars * Keymap speed effect; keymap improvements/fixes Readme updated to match changes * Refactored to use common IS31FL3731/I2C drivers * Fixed make rules, backlight disabled feature * Make split rightshift default for Zeal65 * Added M60-A as a "version" of Zeal60. * Renamed IS31FL3731 driver functions * Fix suspend_wakeup_init_kb() being defined twice * First pass refactor dynamic keymaps * Updated to changed I2C and ISSI drivers * Refactor zeal_color.* usage to quantum/color.* * Updated Zeal65, fixed dynamic_keymap * Major refactoring of Zeal60 backlight and API * Lots of little cleanups * Added readme.md * Added readme.md * Added LAYOUT_60*() macros, refactored and cleaned up default keymaps * Fix compile error in suspend.c * Added Zeal65 LAYOUT macros, info.json * Added rama/m60_a, deleted zeal60/keymaps/m60_a * Fixed rama/m60_a/keymaps/proto * Fixed compilation error for suspend.c * Requested changes for PR * Fixed readme.md images * Another readme.md fix * Added drashna's requested changes
Diffstat (limited to 'quantum/dynamic_keymap.c')
-rw-r--r--quantum/dynamic_keymap.c97
1 files changed, 97 insertions, 0 deletions
diff --git a/quantum/dynamic_keymap.c b/quantum/dynamic_keymap.c
new file mode 100644
index 000000000..9f18612d5
--- /dev/null
+++ b/quantum/dynamic_keymap.c
@@ -0,0 +1,97 @@
1/* Copyright 2017 Jason Williams (Wilba)
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 "config.h"
18#include "keymap.h" // to get keymaps[][][]
19
20#include "dynamic_keymap.h"
21
22#ifdef DYNAMIC_KEYMAP_ENABLE
23
24#ifndef DYNAMIC_KEYMAP_EEPROM_ADDR
25#error DYNAMIC_KEYMAP_EEPROM_ADDR not defined
26#endif
27
28#ifndef DYNAMIC_KEYMAP_LAYER_COUNT
29#error DYNAMIC_KEYMAP_LAYER_COUNT not defined
30#endif
31
32#define KC_EENULL 0xFFFF // TODO: move to enum quantum_keycodes
33
34void *dynamic_keymap_key_to_eeprom_address(uint8_t layer, uint8_t row, uint8_t column)
35{
36 // TODO: optimize this with some left shifts
37 return ((void*)DYNAMIC_KEYMAP_EEPROM_ADDR) + ( layer * MATRIX_ROWS * MATRIX_COLS * 2 ) +
38 ( row * MATRIX_COLS * 2 ) + ( column * 2 );
39}
40
41uint16_t dynamic_keymap_get_keycode(uint8_t layer, uint8_t row, uint8_t column)
42{
43 void *address = dynamic_keymap_key_to_eeprom_address(layer, row, column);
44 // Big endian, so we can read/write EEPROM directly from host if we want
45 uint16_t keycode = eeprom_read_byte(address) << 8;
46 keycode |= eeprom_read_byte(address + 1);
47 return keycode;
48}
49
50void dynamic_keymap_set_keycode(uint8_t layer, uint8_t row, uint8_t column, uint16_t keycode)
51{
52 void *address = dynamic_keymap_key_to_eeprom_address(layer, row, column);
53 // Big endian, so we can read/write EEPROM directly from host if we want
54 eeprom_update_byte(address, (uint8_t)(keycode >> 8));
55 eeprom_update_byte(address+1, (uint8_t)(keycode & 0xFF));
56}
57
58void dynamic_keymap_clear_all(void)
59{
60 // Save "empty" keymaps.
61 for ( int layer = 0; layer < DYNAMIC_KEYMAP_LAYER_COUNT; layer++ )
62 {
63 for ( int row = 0; row < MATRIX_ROWS; row++ )
64 {
65 for ( int column = 0; column < MATRIX_COLS; column++ )
66 {
67 dynamic_keymap_set_keycode(layer, row, column, KC_EENULL);
68 }
69 }
70 }
71}
72
73// This overrides the one in quantum/keymap_common.c
74uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key)
75{
76 // This used to test EEPROM for magic bytes, but it was redundant.
77 // Test for EEPROM usage change (fresh install, address change, etc.)
78 // externally and call dynamic_keymap_default_save()
79 if ( layer < DYNAMIC_KEYMAP_LAYER_COUNT &&
80 key.row < MATRIX_ROWS && // possibly redundant
81 key.col < MATRIX_COLS ) // possibly redundant
82 {
83 uint16_t keycode = dynamic_keymap_get_keycode(layer, key.row, key.col);
84
85 // If keycode is not "empty", return it, otherwise
86 // drop down to return the one in flash
87 if ( keycode != KC_EENULL)
88 {
89 return keycode;
90 }
91 }
92
93 return pgm_read_word(&keymaps[layer][key.row][key.col]);
94}
95
96#endif // DYNAMIC_KEYMAP_ENABLE
97