]> git.gir.st - tmk_keyboard.git/blob - keyboard/gh60/keymap.c
Boot Magic key for gh60
[tmk_keyboard.git] / keyboard / gh60 / keymap.c
1 /*
2 Copyright 2012 Jun Wako <wakojun@gmail.com>
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17 #include <stdint.h>
18 #include <stdbool.h>
19 #include <avr/pgmspace.h>
20 #include "keycode.h"
21 #include "print.h"
22 #include "debug.h"
23 #include "util.h"
24 #include "keymap.h"
25
26
27 /* GH60 keymap definition macro
28 * K2C, K31 and K3C are extra keys for ISO
29 */
30 #define KEYMAP( \
31 K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, \
32 K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, \
33 K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, \
34 K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, \
35 K40, K41, K42, K45, K4A, K4B, K4C, K4D \
36 ) { \
37 { KC_##K00, KC_##K01, KC_##K02, KC_##K03, KC_##K04, KC_##K05, KC_##K06, KC_##K07, KC_##K08, KC_##K09, KC_##K0A, KC_##K0B, KC_##K0C, KC_##K0D }, \
38 { KC_##K10, KC_##K11, KC_##K12, KC_##K13, KC_##K14, KC_##K15, KC_##K16, KC_##K17, KC_##K18, KC_##K19, KC_##K1A, KC_##K1B, KC_##K1C, KC_##K1D }, \
39 { KC_##K20, KC_##K21, KC_##K22, KC_##K23, KC_##K24, KC_##K25, KC_##K26, KC_##K27, KC_##K28, KC_##K29, KC_##K2A, KC_##K2B, KC_##K2C, KC_##K2D }, \
40 { KC_##K30, KC_##K31, KC_##K32, KC_##K33, KC_##K34, KC_##K35, KC_##K36, KC_##K37, KC_##K38, KC_##K39, KC_##K3A, KC_##K3B, KC_##K3C, KC_##K3D }, \
41 { KC_##K40, KC_##K41, KC_##K42, KC_NO, KC_NO, KC_##K45, KC_NO, KC_NO, KC_NO, KC_NO, KC_##K4A, KC_##K4B, KC_##K4C, KC_##K4D } \
42 }
43
44 /* ANSI valiant. No extra keys for ISO */
45 #define KEYMAP_ANSI( \
46 K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, \
47 K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, \
48 K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, \
49 K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3D, \
50 K40, K41, K42, K45, K4A, K4B, K4C, K4D \
51 ) KEYMAP( \
52 K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, \
53 K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, \
54 K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, NO, K2D, \
55 K30, NO, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, NO, K3D, \
56 K40, K41, K42, K45, K4A, K4B, K4C, K4D \
57 )
58
59 #define KEYCODE(layer, row, col) (pgm_read_byte(&keymaps[(layer)][(row)][(col)]))
60
61
62 // Assign Fn key(0-7) to a layer to which switch with the Fn key pressed.
63 static const uint8_t PROGMEM fn_layer[] = {
64 0, // Fn0
65 1, // Fn1
66 2, // Fn2
67 3, // Fn3
68 3, // Fn4
69 0, // Fn5
70 0, // Fn6
71 0 // Fn7
72 };
73
74 // Assign Fn key(0-7) to a keycode sent when release Fn key without use of the layer.
75 // See layer.c for details.
76 static const uint8_t PROGMEM fn_keycode[] = {
77 KC_NO, // Fn0
78 KC_NO, // Fn1
79 KC_SLSH, // Fn2
80 KC_SCLN, // Fn3
81 KC_NO, // Fn4
82 KC_NO, // Fn5
83 KC_NO, // Fn6
84 KC_NO // Fn7
85 };
86
87 static const uint8_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
88 #ifdef PLAIN_MAP
89 /* Layer 0: Default Layer
90 * ,-----------------------------------------------------------.
91 * |Esc| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp |
92 * |-----------------------------------------------------------|
93 * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \|
94 * |-----------------------------------------------------------|
95 * |Caps | A| S| D| F| G| H| J| K| L| ;| '|Return |
96 * |-----------------------------------------------------------|
97 * |Shift | Z| X| C| V| B| N| M| ,| .| /|Shift |
98 * |-----------------------------------------------------------|
99 * |Ctrl|Gui |Alt | Space |Alt |Gui |App |Ctrl|
100 * `-----------------------------------------------------------'
101 */
102 KEYMAP(ESC, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, MINS,EQL, BSPC, \
103 TAB, Q, W, E, R, T, Y, U, I, O, P, LBRC,RBRC,BSLS, \
104 CAPS,A, S, D, F, G, H, J, K, L, SCLN,QUOT,NO, ENT, \
105 LSFT,NO, Z, X, C, V, B, N, M, COMM,DOT, SLSH,NO, RSFT, \
106 LCTL,LGUI,LALT, SPC, RALT,RGUI,APP, RCTL),
107 #else
108 /* Layer 0: Default Layer
109 * ,-----------------------------------------------------------.
110 * |Esc| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp |
111 * |-----------------------------------------------------------|
112 * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \|
113 * |-----------------------------------------------------------|
114 * |Caps | A| S| D| F| G| H| J| K| L|Fn3| '|Return |
115 * |-----------------------------------------------------------|
116 * |Shift | Z| X| C| V| B| N| M| ,| .|Fn2|Shift |
117 * |-----------------------------------------------------------|
118 * |Ctrl|Gui |Alt | Space |Alt |Fn4 |Fn4 |Fn1 |
119 * `-----------------------------------------------------------'
120 */
121 KEYMAP_ANSI(
122 ESC, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, MINS,EQL, BSPC, \
123 TAB, Q, W, E, R, T, Y, U, I, O, P, LBRC,RBRC,BSLS, \
124 LCTL,A, S, D, F, G, H, J, K, L, FN3, QUOT, ENT, \
125 LSFT,Z, X, C, V, B, N, M, COMM,DOT, FN2, RSFT, \
126 LCTL,LGUI,LALT, SPC, RALT,FN4, FN4, FN1),
127 /* Layer 1: HHKB mode
128 * ,-----------------------------------------------------------.
129 * |Esc| F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12|Delete |
130 * |-----------------------------------------------------------|
131 * |Caps | | | | | | | |Psc|Slk|Pus|Up | |Inser|
132 * |-----------------------------------------------------------|
133 * |Contro|VoD|VoU|Mut| | | *| /|Hom|PgU|Lef|Rig|Enter |
134 * |-----------------------------------------------------------|
135 * |Shift | | | | | | +| -|End|PgD|Dow|Shift |
136 * |-----------------------------------------------------------|
137 * |Ctrl|Gui |Alt | Space |Alt |Gui |App |xxx |
138 * `-----------------------------------------------------------'
139 */
140 KEYMAP_ANSI(
141 PWR, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, DEL, \
142 CAPS,NO, NO, NO, NO, NO, NO, NO, PSCR,SLCK,PAUS,UP, NO, INS, \
143 LCTL,VOLD,VOLU,MUTE,NO, NO, PAST,PSLS,HOME,PGUP,LEFT,RGHT, ENT, \
144 LSFT,NO, NO, NO, NO, NO, PPLS,PMNS,END, PGDN,DOWN, RSFT, \
145 LCTL,LGUI,LALT, SPC, RALT,RGUI,APP, FN1),
146 /* Layer 2: Vi mode (Slash)
147 * ,-----------------------------------------------------------.
148 * | `| F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12|Backsp |
149 * |-----------------------------------------------------------|
150 * |Tab |Hom|PgD|Up |PgU|End|Hom|PgD|PgU|End| | | | |
151 * |-----------------------------------------------------------|
152 * |Contro| |Lef|Dow|Rig| |Lef|Dow|Up |Rig| | |Return |
153 * |-----------------------------------------------------------|
154 * |Shift | | | | | |Hom|PgD|PgU|End|xxx|Shift |
155 * |-----------------------------------------------------------|
156 * |Ctrl|Gui |Alt | Space |Alt |Gui |App |Ctrl|
157 * `-----------------------------------------------------------'
158 */
159 KEYMAP_ANSI(
160 GRV, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, BSPC, \
161 TAB, HOME,PGDN,UP, PGUP,END, HOME,PGDN,PGUP,END, NO, NO, NO, NO, \
162 LCTL,NO, LEFT,DOWN,RGHT,NO, LEFT,DOWN,UP, RGHT,NO, NO, ENT, \
163 LSFT,NO, NO, NO, NO, NO, HOME,PGDN,PGUP,END, FN2, RSFT, \
164 LCTL,LGUI,LALT, SPC, RALT,RGUI,APP, RCTL),
165 /* Layer 3: Mouse mode (Semicolon/App)
166 * ,-----------------------------------------------------------.
167 * | `| F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12|Backsp |
168 * |-----------------------------------------------------------|
169 * |Tab | | | | | |MwL|MwD|MwU|MwR| | | | |
170 * |-----------------------------------------------------------|
171 * |Contro| |Ac0|Ac1|Ac1| |McL|McD|McU|McR|xxx| |Return |
172 * |-----------------------------------------------------------|
173 * |Shift | | | | |Mb3|Mb2|Mb1|Mb4|Mb5| |Shift |
174 * |-----------------------------------------------------------|
175 * |Ctrl|Gui |Alt | Space | |xxx |xxx | |
176 * `-----------------------------------------------------------'
177 * Mc: Mouse Cursor / Mb: Mouse Button / Mw: Mouse Wheel
178 */
179 KEYMAP_ANSI(
180 GRV, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, BSPC, \
181 TAB, NO, NO, NO, NO, NO, WH_L,WH_D,WH_U,WH_R,NO, NO, NO, NO, \
182 LCTL,NO, ACL0,ACL1,ACL2,NO, MS_L,MS_D,MS_U,MS_R,FN3, NO, ENT, \
183 LSFT,NO, NO, NO, NO, BTN3,BTN2,BTN1,BTN4,BTN5,NO, RSFT, \
184 LCTL,LGUI,LALT, BTN1, NO, FN4, FN4, NO ),
185 #endif
186 };
187
188
189 uint8_t keymap_get_keycode(uint8_t layer, uint8_t row, uint8_t col)
190 {
191 return KEYCODE(layer, row, col);
192 }
193
194 uint8_t keymap_fn_layer(uint8_t index)
195 {
196 return pgm_read_byte(&fn_layer[index]);
197 }
198
199 uint8_t keymap_fn_keycode(uint8_t index)
200 {
201 return pgm_read_byte(&fn_keycode[index]);
202 }
Imprint / Impressum