[Keymap] Add KC_MAKE keycode to my userspace and keymaps (#5324)
* Add keycode for KC_MAKE * Add KC_MAKE keycode * Add stanrc85.c file with KC_MAKE * Remove unused include * Improved KC_MAKE stolen from Drashna * Define mod mask for new KC_MAKE code * RESET board to flash after compiling * Remove send_string * RESET fixed in KC_MAKE
This commit is contained in:
parent
be8257f0a7
commit
33e9f1c75a
5 changed files with 56 additions and 4 deletions
|
@ -1,12 +1,21 @@
|
|||
#pragma once
|
||||
|
||||
#include "quantum.h"
|
||||
#include "version.h"
|
||||
|
||||
#define DEFAULT 0 //Custom ANSI
|
||||
#define LAYER1 1 //Default ANSI (enable with Fn2+CAPS)
|
||||
#define LAYER2 2 //Function keys, arrows, custom shortcuts, volume control
|
||||
#define LAYER3 3 //RGB Underglow controls and RESET
|
||||
|
||||
enum custom_keycodes {
|
||||
KC_MAKE = SAFE_RANGE,
|
||||
NEW_SAFE_RANGE //use "NEW_SAFE_RANGE" for keymap specific codes
|
||||
};
|
||||
|
||||
#define MODS_SHIFT_MASK (MOD_BIT(KC_LSHIFT)|MOD_BIT(KC_RSHIFT))
|
||||
#define MODS_CTRL_MASK (MOD_BIT(KC_LCTL)|MOD_BIT(KC_RCTRL))
|
||||
|
||||
//Aliases for longer keycodes
|
||||
#define KC_CAD LALT(LCTL(KC_DEL))
|
||||
#define KC_LOCK LGUI(KC_L)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue