summaryrefslogtreecommitdiff
path: root/keymap.h
diff options
context:
space:
mode:
authortmk2011-02-21 15:43:17 +0900
committertmk2011-02-22 03:09:14 +0900
commitfb8d23c60c757d5d9c2270cb0123a53be2049a28 (patch)
tree2f5d695f9d501468dc83f4861e7367cdf905ed3f /keymap.h
parent47f5d8b545eec12ca74d8e7048bb5daa290d937e (diff)
integrate V-USB support into ps2_usb
Diffstat (limited to 'keymap.h')
-rw-r--r--keymap.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/keymap.h b/keymap.h
new file mode 100644
index 000000000..79ef0359d
--- /dev/null
+++ b/keymap.h
@@ -0,0 +1,18 @@
+#ifndef KEYMAP_H
+#define KEYMAP_H
+
+#include <stdint.h>
+#include <stdbool.h>
+#include "usb_keycodes.h"
+
+
+/* keycode in specific layer */
+uint8_t keymap_get_keycode(uint8_t layer, uint8_t row, uint8_t col);
+
+/* layer to move during press Fn key */
+uint8_t keymap_fn_layer(uint8_t fn_bits);
+
+/* keycode to send when release Fn key without using */
+uint8_t keymap_fn_keycode(uint8_t fn_bits);
+
+#endif