tmk_keyboard/common/keyboard.h

71 lines
1.8 KiB
C
Raw Normal View History

2011-07-20 17:32:52 +02:00
/*
Copyright 2011 Jun Wako <wakojun@gmail.com>
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/>.
*/
2011-02-08 16:03:58 +01:00
#ifndef KEYBOARD_H
#define KEYBOARD_H
#include <stdbool.h>
2011-02-12 16:15:51 +01:00
#include <stdint.h>
2011-02-08 16:03:58 +01:00
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
uint8_t col;
2013-01-17 07:00:41 +01:00
uint8_t row;
2012-12-15 18:32:07 +01:00
} keypos_t;
2013-01-17 07:00:41 +01:00
typedef union {
uint16_t raw;
keypos_t pos;
} key_t;
typedef struct {
2013-01-20 07:03:07 +01:00
key_t key;
bool pressed;
2013-01-09 14:33:33 +01:00
uint16_t time;
} keyevent_t;
2013-01-26 18:42:48 +01:00
#define KEYEQ(keya, keyb) ((keya).raw == (keyb).raw)
#define IS_NOEVENT(event) ((event).key.pos.row == 255 && (event).key.pos.col == 255)
2013-01-23 17:02:11 +01:00
#define NOEVENT (keyevent_t){ \
.key.pos = (keypos_t){ .row = 255, .col = 255 }, \
.pressed = false, \
.time = 0 \
}
2013-01-26 18:42:48 +01:00
#define TICK (keyevent_t){ \
.key.pos = (keypos_t){ .row = 255, .col = 255 }, \
.pressed = false, \
.time = timer_read() \
}
extern uint8_t current_layer;
extern uint8_t default_layer;
2011-02-10 07:51:30 +01:00
void keyboard_init(void);
void keyboard_task(void);
2011-02-12 16:15:51 +01:00
void keyboard_set_leds(uint8_t leds);
#ifdef __cplusplus
}
#endif
2011-02-08 16:03:58 +01:00
#endif