-
Notifications
You must be signed in to change notification settings - Fork 25
/
keymap_common.h
57 lines (48 loc) · 1.89 KB
/
keymap_common.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
Copyright 2015 Jun Wako <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef KEYMAP_COMMON_H
#define KEYMAP_COMMON_H
#include <stdint.h>
#include <stdbool.h>
#include "keycode.h"
#include "action.h"
#include "action_macro.h"
#include "action_util.h"
#include "report.h"
#include "host.h"
#include "print.h"
#include "debug.h"
#include "keymap.h"
extern const uint8_t keymaps[][MATRIX_ROWS][MATRIX_COLS];
extern const uint16_t fn_actions[];
/* Infinity prototype */
#define KEYMAP( \
K80, K70, K60, K50, K40, K30, K20, \
K81, K71, K61, K51, K41, K31, K21, \
K82, K72, K62, K52, K42, K32, \
K83, K73, K63, K53, K43, K33, K23, K13, K03, \
K84, K74, K64, K54, K44, K34, K24, K04, \
K14 \
) { \
{ KC_NO, KC_NO, KC_NO, KC_##K03, KC_##K04 }, \
{ KC_NO, KC_NO, KC_NO, KC_##K13, KC_##K14 }, \
{ KC_##K20, KC_##K21, KC_NO, KC_##K23, KC_##K24 }, \
{ KC_##K30, KC_##K31, KC_##K32, KC_##K33, KC_##K34 }, \
{ KC_##K40, KC_##K41, KC_##K42, KC_##K43, KC_##K44 }, \
{ KC_##K50, KC_##K51, KC_##K52, KC_##K53, KC_##K54 }, \
{ KC_##K60, KC_##K61, KC_##K62, KC_##K63, KC_##K64 }, \
{ KC_##K70, KC_##K71, KC_##K72, KC_##K73, KC_##K74 }, \
{ KC_##K80, KC_##K81, KC_##K82, KC_##K83, KC_##K84 } \
}
#endif