diff options
author | Damien <Dbroqua@users.noreply.github.com> | 2017-03-05 22:58:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-05 22:58:13 +0100 |
commit | 24ec8f509703cbaf9de7b41d251dbb7fcd339559 (patch) | |
tree | 90f4f9adf406d92c6817c412256904a97c716daf /quantum/quantum.h | |
parent | b7b94bfb132aa5f2f79b587fcfa6b1197485db27 (diff) | |
parent | 615bfc4eca8204b73c592a076ca02aeaeceb7e1e (diff) | |
download | firmware-24ec8f509703cbaf9de7b41d251dbb7fcd339559.tar.gz firmware-24ec8f509703cbaf9de7b41d251dbb7fcd339559.tar.bz2 firmware-24ec8f509703cbaf9de7b41d251dbb7fcd339559.zip |
Merge pull request #18 from qmk/master
Merge from qmk
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r-- | quantum/quantum.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h index e6adf974a..580d51202 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h @@ -15,7 +15,6 @@ #ifdef RGBLIGHT_ENABLE #include "rgblight.h" #endif - #include "action_layer.h" #include "eeconfig.h" #include <stddef.h> @@ -57,12 +56,24 @@ 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 #include "process_printer.h" #endif +#ifdef COMBO_ENABLE + #include "process_combo.h" +#endif + #define SEND_STRING(str) send_string(PSTR(str)) void send_string(const char *str); @@ -114,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); |