summaryrefslogtreecommitdiffstats
path: root/quantum/keymap_common.c
diff options
context:
space:
mode:
authorErez Zukerman <ezuk@madmimi.com>2016-04-07 14:21:06 +0200
committerErez Zukerman <ezuk@madmimi.com>2016-04-07 14:21:06 +0200
commit9cfc74c35b940884618b0fe1e6fd25c570e1c974 (patch)
treef4372d9b26521207d5106dd5a255f0ce285417ea /quantum/keymap_common.c
parentee2ee7f4f049dda385a9db7dddd8e7e91681315b (diff)
downloadqmk_firmware-9cfc74c35b940884618b0fe1e6fd25c570e1c974.tar.gz
qmk_firmware-9cfc74c35b940884618b0fe1e6fd25c570e1c974.tar.xz
[Erez & Jack] Makes tri-layer available across Quantum
Diffstat (limited to 'quantum/keymap_common.c')
-rw-r--r--quantum/keymap_common.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/quantum/keymap_common.c b/quantum/keymap_common.c
index e3030a886..3a00d36f0 100644
--- a/quantum/keymap_common.c
+++ b/quantum/keymap_common.c
@@ -291,3 +291,11 @@ action_t keymap_func_to_action(uint16_t keycode)
// For FUNC without 8bit limit
return (action_t){ .code = pgm_read_word(&fn_actions[(int)keycode]) };
}
+
+void update_tri_layer(uint8_t layer1, uint8_t layer2, uint8_t layer3) {
+ if (IS_LAYER_ON(layer1) && IS_LAYER_ON(layer2)) {
+ layer_on(layer3);
+ } else {
+ layer_off(layer3);
+ }
+}