]> git.donarmstrong.com Git - tmk_firmware.git/blob - common/keyboard.h
Fix mods with tapping.
[tmk_firmware.git] / common / keyboard.h
1 /*
2 Copyright 2011 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
18 #ifndef KEYBOARD_H
19 #define KEYBOARD_H
20
21 #include <stdbool.h>
22 #include <stdint.h>
23
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 typedef struct {
30     uint8_t col;
31     uint8_t row;
32 } keypos_t;
33
34 typedef union {
35     uint16_t raw;
36     keypos_t pos;
37 } key_t;
38
39 typedef struct {
40     key_t    key;
41     bool     pressed;
42     uint16_t time;
43 } keyevent_t;
44
45 #define KEYEQ(keya, keyb)       (keya.raw == keyb.raw)
46 #define IS_NOEVENT(event)       (event.time == 0)
47 #define NOEVENT                 (keyevent_t) {      \
48     .key = (keypos_t){ .row = 255, .col = 255 },    \
49     .pressed = false,                               \
50     .time = 0,                                      \
51 }
52
53
54 extern uint8_t current_layer;
55 extern uint8_t default_layer;
56
57 void keyboard_init(void);
58 void keyboard_task(void);
59 void keyboard_set_leds(uint8_t leds);
60
61 #ifdef __cplusplus
62 }
63 #endif
64
65 #endif