1
0
Fork 0

Add initial fix for new keymap.

This commit is contained in:
tmk 2012-12-16 02:32:07 +09:00
parent 77f157943f
commit 8a709c2750
14 changed files with 967 additions and 611 deletions

View file

@ -29,10 +29,10 @@ extern "C" {
typedef struct {
uint8_t row;
uint8_t col;
} key_t;
} keypos_t;
typedef struct {
key_t key;
keypos_t key;
bool pressed;
} keyevent_t;
@ -45,7 +45,6 @@ typedef struct {
#define KEYEQ(keya, keyb) (keya.row == keyb.row && keya.col == keyb.col)
extern uint8_t current_layer;
extern uint8_t default_layer;