aboutsummaryrefslogtreecommitdiff
path: root/quantum/quantum.h
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r--quantum/quantum.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h
index e6adf974a..18f072189 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>
@@ -63,6 +62,10 @@ extern uint32_t default_layer_state;
63 #include "process_printer.h" 62 #include "process_printer.h"
64#endif 63#endif
65 64
65#ifdef COMBO_ENABLE
66 #include "process_combo.h"
67#endif
68
66#define SEND_STRING(str) send_string(PSTR(str)) 69#define SEND_STRING(str) send_string(PSTR(str))
67void send_string(const char *str); 70void send_string(const char *str);
68 71