summaryrefslogtreecommitdiff
path: root/quantum/keymap_common.h
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2015-10-26 14:49:46 -0400
committerJack Humbert <jack.humb@gmail.com>2015-10-26 14:49:46 -0400
commit46e7fb2d3ccd699c0a1b1fd9d02860b1f2a44141 (patch)
treef0b00f664ecdaf83e30f27baf20780eb5d91c39a /quantum/keymap_common.h
parentff8d8a50dfbb8502003a5181878c54a71b8c57d5 (diff)
quantum separated
Diffstat (limited to 'quantum/keymap_common.h')
-rw-r--r--quantum/keymap_common.h121
1 files changed, 121 insertions, 0 deletions
diff --git a/quantum/keymap_common.h b/quantum/keymap_common.h
new file mode 100644
index 0000000000..091f7d8f3e
--- /dev/null
+++ b/quantum/keymap_common.h
@@ -0,0 +1,121 @@
1/*
2Copyright 2012,2013 Jun Wako <wakojun@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#ifndef KEYMAP_H
19#define KEYMAP_H
20
21#include <stdint.h>
22#include <stdbool.h>
23#include "action.h"
24#include <avr/pgmspace.h>
25#include "keycode.h"
26#include "keymap.h"
27#include "action_macro.h"
28#include "report.h"
29#include "host.h"
30// #include "print.h"
31#include "debug.h"
32
33#ifdef BOOTMAGIC_ENABLE
34/* NOTE: Not portable. Bit field order depends on implementation */
35typedef union {
36 uint16_t raw;
37 struct {
38 bool swap_control_capslock:1;
39 bool capslock_to_control:1;
40 bool swap_lalt_lgui:1;
41 bool swap_ralt_rgui:1;
42 bool no_gui:1;
43 bool swap_grave_esc:1;
44 bool swap_backslash_backspace:1;
45 bool nkro:1;
46 };
47} keymap_config_t;
48keymap_config_t keymap_config;
49#endif
50
51
52/* translates key to keycode */
53uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key);
54
55/* translates Fn keycode to action */
56action_t keymap_fn_to_action(uint16_t keycode);
57
58/* translates Fn keycode to action */
59action_t keymap_func_to_action(uint16_t keycode);
60
61extern const uint16_t keymaps[][MATRIX_ROWS][MATRIX_COLS];
62extern const uint16_t fn_actions[];
63
64// Ability to use mods in layouts
65#define LCTL(kc) kc | 0x0100
66#define LSFT(kc) kc | 0x0200
67#define LALT(kc) kc | 0x0400
68#define LGUI(kc) kc | 0x0800
69#define RCTL(kc) kc | 0x1100
70#define RSFT(kc) kc | 0x1200
71#define RALT(kc) kc | 0x1400
72#define RGUI(kc) kc | 0x1800
73
74// Alias for function layers than expand past FN31
75#define FUNC(kc) kc | 0x2000
76
77// Aliases
78#define S(kc) LSFT(kc)
79#define F(kc) FUNC(kc)
80
81#define M(kc) kc | 0x3000
82
83#define MACRODOWN(...) (record->event.pressed ? MACRO(__VA_ARGS__) : MACRO_NONE)
84
85#define BL_ON 0x4009
86#define BL_OFF 0x4000
87#define BL_0 0x4000
88#define BL_1 0x4001
89#define BL_2 0x4002
90#define BL_3 0x4003
91#define BL_4 0x4004
92#define BL_5 0x4005
93#define BL_6 0x4006
94#define BL_7 0x4007
95#define BL_8 0x4008
96#define BL_9 0x4009
97#define BL_10 0x400A
98#define BL_11 0x400B
99#define BL_12 0x400C
100#define BL_13 0x400D
101#define BL_14 0x400E
102#define BL_15 0x400F
103#define BL_DEC 0x4010
104#define BL_INC 0x4011
105#define BL_TOGG 0x4012
106#define BL_STEP 0x4013
107
108#define RESET 0x5000
109#define DEBUG 0x5001
110
111// ON_PRESS = 1
112// ON_RELEASE = 2
113// ON_BOTH = 3
114#define TO(layer, when) (layer | 0x5100 | (when << 0x9))
115
116#define MIDI(n) (n | 0x6000)
117
118#define UNI(n) (n | 0x8000)
119
120
121#endif