From 45d4a7a89883c3433604d4e011b665796a583008 Mon Sep 17 00:00:00 2001 From: tmk Date: Fri, 29 Oct 2010 15:17:18 +0900 Subject: improve layer switching --- layer.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 layer.h (limited to 'layer.h') diff --git a/layer.h b/layer.h new file mode 100644 index 000000000..79a549857 --- /dev/null +++ b/layer.h @@ -0,0 +1,13 @@ +#ifndef LAYER_H +#define LAYER_H 1 + +#include + + +/* return keycode for switch */ +uint8_t layer_get_keycode(uint8_t row, uint8_t col); + +/* process layer switching */ +void layer_switching(uint8_t fn_bits); + +#endif -- cgit v1.2.3-24-g4f1b