Add initial fix for new keymap.
This commit is contained in:
parent
77f157943f
commit
8a709c2750
14 changed files with 967 additions and 611 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue