summaryrefslogtreecommitdiffstats
path: root/quantum/quantum_keycodes.h
diff options
context:
space:
mode:
authorLuke Silva <lukemasilva@gmail.com>2017-01-28 08:42:35 +0100
committerLuke Silva <lukemasilva@gmail.com>2017-01-28 08:42:35 +0100
commita3357d078ee80123040679a357f63e93ff24c4c6 (patch)
tree2f4b1679cfc9720b80d5fd10be8144c892175439 /quantum/quantum_keycodes.h
parentcfc4149712217625fcb75e50348094fd9df432f5 (diff)
downloadqmk_firmware-a3357d078ee80123040679a357f63e93ff24c4c6.tar.gz
qmk_firmware-a3357d078ee80123040679a357f63e93ff24c4c6.tar.xz
Add support for various tapping macros
A macro key can now be easily set to act as a modifier on hold, and press a shifted key when tapped. Or to switch layers when held, and again press a shifted key when tapped. Various other helper defines have been created which send macros when the key is pressed, released and tapped, cleaning up the action_get_macro function inside keymap definitions. The layer switching macros require a GCC extension - 'compound statements enclosed within parentheses'. The use of this extension is already present within the macro subsystem of this project, so its use in this commit should not cause any additional issues. MACRO_NONE had to be cast to a (macro_t*) to suppress compiler warnings within some tapping macros.
Diffstat (limited to 'quantum/quantum_keycodes.h')
-rw-r--r--quantum/quantum_keycodes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/quantum_keycodes.h b/quantum/quantum_keycodes.h
index 4566395fd..e0d469561 100644
--- a/quantum/quantum_keycodes.h
+++ b/quantum/quantum_keycodes.h
@@ -249,6 +249,7 @@ enum quantum_keycodes {
#define MACROTAP(kc) (kc | QK_MACRO | FUNC_TAP<<8)
#define MACRODOWN(...) (record->event.pressed ? MACRO(__VA_ARGS__) : MACRO_NONE)
+
// L-ayer, T-ap - 256 keycode max, 16 layer max
#define LT(layer, kc) (kc | QK_LAYER_TAP | ((layer & 0xF) << 8))