diff options
| author | Jack Humbert <jack.humb@gmail.com> | 2017-02-15 23:46:31 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-15 23:46:31 -0500 |
| commit | 77b6ac831eb58e753cc666c66a67e9a9be369061 (patch) | |
| tree | 04e3074214a8415a8b0404477561d990a9ce205c /quantum/quantum_keycodes.h | |
| parent | 7bef285553dee01bbcb1eaadefbfb39ed75baea4 (diff) | |
| parent | 58823b4e0324f5b2861fc5a0f74f6faa3673f5dc (diff) | |
| download | qmk_firmware-77b6ac831eb58e753cc666c66a67e9a9be369061.tar.gz qmk_firmware-77b6ac831eb58e753cc666c66a67e9a9be369061.zip | |
Merge pull request #1104 from qmk/layer_tap_toggle
Adds layer tap toggle as TT(layer)
Diffstat (limited to 'quantum/quantum_keycodes.h')
| -rw-r--r-- | quantum/quantum_keycodes.h | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/quantum/quantum_keycodes.h b/quantum/quantum_keycodes.h index cc7a5013f..63b626926 100644 --- a/quantum/quantum_keycodes.h +++ b/quantum/quantum_keycodes.h | |||
| @@ -41,16 +41,21 @@ enum quantum_keycodes { | |||
| 41 | #endif | 41 | #endif |
| 42 | QK_TAP_DANCE = 0x5700, | 42 | QK_TAP_DANCE = 0x5700, |
| 43 | QK_TAP_DANCE_MAX = 0x57FF, | 43 | QK_TAP_DANCE_MAX = 0x57FF, |
| 44 | #ifdef UNICODEMAP_ENABLE | 44 | QK_LAYER_TAP_TOGGLE = 0x5800, |
| 45 | QK_UNICODE_MAP = 0x5800, | 45 | QK_LAYER_TAP_TOGGLE_MAX = 0x58FF, |
| 46 | QK_UNICODE_MAP_MAX = 0x5BFF, | ||
| 47 | #endif | ||
| 48 | QK_MOD_TAP = 0x6000, | 46 | QK_MOD_TAP = 0x6000, |
| 49 | QK_MOD_TAP_MAX = 0x7FFF, | 47 | QK_MOD_TAP_MAX = 0x7FFF, |
| 48 | #if defined(UNICODEMAP_ENABLE) && defined(UNICODE_ENABLE) | ||
| 49 | #error "Cannot enable both UNICODEMAP && UNICODE" | ||
| 50 | #endif | ||
| 50 | #ifdef UNICODE_ENABLE | 51 | #ifdef UNICODE_ENABLE |
| 51 | QK_UNICODE = 0x8000, | 52 | QK_UNICODE = 0x8000, |
| 52 | QK_UNICODE_MAX = 0xFFFF, | 53 | QK_UNICODE_MAX = 0xFFFF, |
| 53 | #endif | 54 | #endif |
| 55 | #ifdef UNICODEMAP_ENABLE | ||
| 56 | QK_UNICODE_MAP = 0x8000, | ||
| 57 | QK_UNICODE_MAP_MAX = 0x83FF, | ||
| 58 | #endif | ||
| 54 | 59 | ||
| 55 | // Loose keycodes - to be used directly | 60 | // Loose keycodes - to be used directly |
| 56 | 61 | ||
| @@ -304,6 +309,9 @@ enum quantum_keycodes { | |||
| 304 | // One-shot mod | 309 | // One-shot mod |
| 305 | #define OSM(mod) (mod | QK_ONE_SHOT_MOD) | 310 | #define OSM(mod) (mod | QK_ONE_SHOT_MOD) |
| 306 | 311 | ||
| 312 | // Layer tap-toggle | ||
| 313 | #define TT(layer) (layer | QK_LAYER_TAP_TOGGLE) | ||
| 314 | |||
| 307 | // M-od, T-ap - 256 keycode max | 315 | // M-od, T-ap - 256 keycode max |
| 308 | #define MT(mod, kc) (kc | QK_MOD_TAP | ((mod & 0x1F) << 8)) | 316 | #define MT(mod, kc) (kc | QK_MOD_TAP | ((mod & 0x1F) << 8)) |
| 309 | 317 | ||
