summaryrefslogtreecommitdiff
path: root/quantum/quantum.h
diff options
context:
space:
mode:
authorJack Humbert2017-02-15 23:46:31 -0500
committerGitHub2017-02-15 23:46:31 -0500
commit77b6ac831eb58e753cc666c66a67e9a9be369061 (patch)
tree04e3074214a8415a8b0404477561d990a9ce205c /quantum/quantum.h
parent7bef285553dee01bbcb1eaadefbfb39ed75baea4 (diff)
parent58823b4e0324f5b2861fc5a0f74f6faa3673f5dc (diff)
Merge pull request #1104 from qmk/layer_tap_toggle
Adds layer tap toggle as TT(layer)
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r--quantum/quantum.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h
index 18f072189..580d51202 100644
--- a/quantum/quantum.h
+++ b/quantum/quantum.h
@@ -56,6 +56,14 @@ extern uint32_t default_layer_state;
#include "process_unicode.h"
#endif
+#ifdef UCIS_ENABLE
+ #include "process_ucis.h"
+#endif
+
+#ifdef UNICODEMAP_ENABLE
+ #include "process_unicodemap.h"
+#endif
+
#include "process_tap_dance.h"
#ifdef PRINTING_ENABLE
@@ -117,7 +125,7 @@ void send_dword(uint32_t number);
void send_word(uint16_t number);
void send_byte(uint8_t number);
void send_nibble(uint8_t number);
-
+uint16_t hex_to_keycode(uint8_t hex);
void led_set_user(uint8_t usb_led);
void led_set_kb(uint8_t usb_led);