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
|
|
|
|
|
2012-10-05 19:23:12 +02:00
|
|
|
#include <stdbool.h>
|
2011-02-12 16:15:51 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2011-02-08 16:03:58 +01:00
|
|
|
|
2012-08-25 08:49:08 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2012-10-05 19:23:12 +02:00
|
|
|
|
|
|
|
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;
|
2012-10-05 19:23:12 +02:00
|
|
|
|
2013-01-17 07:00:41 +01:00
|
|
|
typedef union {
|
|
|
|
uint16_t raw;
|
|
|
|
keypos_t pos;
|
|
|
|
} key_t;
|
|
|
|
|
2012-10-05 19:23:12 +02:00
|
|
|
typedef struct {
|
2013-01-20 07:03:07 +01:00
|
|
|
key_t key;
|
2012-10-05 19:23:12 +02:00
|
|
|
bool pressed;
|
2013-01-09 14:33:33 +01:00
|
|
|
uint16_t time;
|
2012-10-05 19:23:12 +02:00
|
|
|
} keyevent_t;
|
|
|
|
|
2013-01-17 07:00:41 +01:00
|
|
|
#define KEYEQ(keya, keyb) (keya.raw == keyb.raw)
|
2013-01-14 16:06:52 +01:00
|
|
|
#define IS_NOEVENT(event) (event.time == 0)
|
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-14 16:06:52 +01:00
|
|
|
}
|
|
|
|
|
2012-10-05 19:23:12 +02:00
|
|
|
|
|
|
|
extern uint8_t current_layer;
|
|
|
|
extern uint8_t default_layer;
|
|
|
|
|
2011-02-10 07:51:30 +01:00
|
|
|
void keyboard_init(void);
|
2012-10-05 19:23:12 +02:00
|
|
|
void keyboard_task(void);
|
2011-02-12 16:15:51 +01:00
|
|
|
void keyboard_set_leds(uint8_t leds);
|
2012-10-05 19:23:12 +02:00
|
|
|
|
2012-08-25 08:49:08 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2011-02-08 16:03:58 +01:00
|
|
|
|
|
|
|
#endif
|