forked from mirrors/qmk_userspace
[Keymap] Initial commit for keyboardio/atreus/dshields keymap. (#11946)
Incorporating changes suggested during pull request review. Co-authored-by: Daniel Shields <dshields@cboe.com>
This commit is contained in:
parent
371fb853ee
commit
d6fb8f12c6
3 changed files with 52 additions and 0 deletions
|
@ -2,6 +2,11 @@
|
|||
#include "dshields.h"
|
||||
|
||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||
if ((keycode >= QK_MOD_TAP && keycode <= QK_MOD_TAP_MAX)
|
||||
|| (keycode >= QK_LAYER_TAP && keycode <= QK_LAYER_TAP_MAX)
|
||||
|| (keycode >= QK_MODS && keycode <= QK_MODS_MAX)) {
|
||||
keycode = keycode & 0xFF;
|
||||
}
|
||||
if (keycode == KC_ESC && record->event.pressed) {
|
||||
bool rc = true;
|
||||
uint8_t mods = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue