';' for Fn key: send ';' when key realease without using the layer

This commit is contained in:
tmk 2010-10-13 22:13:41 +09:00
parent ba2f31e2cd
commit 34a90769c9
3 changed files with 108 additions and 60 deletions

View file

@ -4,10 +4,16 @@
#include <stdint.h>
#include "usb_keycodes.h"
int get_layer(void);
uint8_t get_keycode(int layer, int row, int col);
#define MATRIX_ROWS 8
#define MATRIX_COLS 8
extern int current_layer;
extern bool key_sent;
int get_layer(void);
uint8_t get_keycode(int layer, int row, int col);
#endif