aboutsummaryrefslogtreecommitdiff
path: root/quantum/quantum.h
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r--quantum/quantum.h15
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 @@
15#ifdef RGBLIGHT_ENABLE 15#ifdef RGBLIGHT_ENABLE
16 #include "rgblight.h" 16 #include "rgblight.h"
17#endif 17#endif
18
19#include "action_layer.h" 18#include "action_layer.h"
20#include "eeconfig.h" 19#include "eeconfig.h"
21#include <stddef.h> 20#include <stddef.h>
@@ -57,12 +56,24 @@ extern uint32_t default_layer_state;
57 #include "process_unicode.h" 56 #include "process_unicode.h"
58#endif 57#endif
59 58
59#ifdef UCIS_ENABLE
60 #include "process_ucis.h"
61#endif
62
63#ifdef UNICODEMAP_ENABLE
64 #include "process_unicodemap.h"
65#endif
66
60#include "process_tap_dance.h" 67#include "process_tap_dance.h"
61 68
62#ifdef PRINTING_ENABLE 69#ifdef PRINTING_ENABLE
63 #include "process_printer.h" 70 #include "process_printer.h"
64#endif 71#endif
65 72
73#ifdef COMBO_ENABLE
74 #include "process_combo.h"
75#endif
76
66#define SEND_STRING(str) send_string(PSTR(str)) 77#define SEND_STRING(str) send_string(PSTR(str))
67void send_string(const char *str); 78void send_string(const char *str);
68 79
@@ -114,7 +125,7 @@ void send_dword(uint32_t number);
114void send_word(uint16_t number); 125void send_word(uint16_t number);
115void send_byte(uint8_t number); 126void send_byte(uint8_t number);
116void send_nibble(uint8_t number); 127void send_nibble(uint8_t number);
117 128uint16_t hex_to_keycode(uint8_t hex);
118 129
119void led_set_user(uint8_t usb_led); 130void led_set_user(uint8_t usb_led);
120void led_set_kb(uint8_t usb_led); 131void led_set_kb(uint8_t usb_led);