diff options
author | tmk <nobody@nowhere> | 2010-09-16 21:05:15 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2010-09-16 21:05:15 +0900 |
commit | f777960c7255b469f3daaec89b9808844f13bb88 (patch) | |
tree | f25da595aa030b9556d5a5106ac34f68bb9cadc3 /keymap.h | |
parent | 82309deefc21f66d92df08b8eecae8466939e04d (diff) |
simple keymap layers.
Diffstat (limited to 'keymap.h')
-rw-r--r-- | keymap.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,8 @@ #include <stdint.h> #include "usbkeycodes.h" -uint8_t get_keycode(uint8_t row, uint8_t col); +int get_layer(void); +uint8_t get_keycode(int layer, uint8_t row, uint8_t col); #define MATRIX_ROWS 9 #define MATRIX_COLS 8 |