git://git.gir.st
/
tmk_keyboard.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
add mouse function.
[tmk_keyboard.git]
/
keymap.h
1
#ifndef KEYMAP_H
2
#define KEYMAP_H 1
3
4
#include <stdint.h>
5
#include
"usb_keycodes.h"
6
7
int
get_layer
(
void
);
8
uint8_t
get_keycode
(
int
layer
,
int
row
,
int
col
);
9
10
#define MATRIX_ROWS 9
11
#define MATRIX_COLS 8
12
13
#endif