summaryrefslogtreecommitdiff
path: root/quantum/quantum.h
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r--quantum/quantum.h17
1 files changed, 15 insertions, 2 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h
index e4a7c5723c..9df15d4cac 100644
--- a/quantum/quantum.h
+++ b/quantum/quantum.h
@@ -177,11 +177,20 @@ extern layer_state_t layer_state;
#endif
#ifdef DIP_SWITCH_ENABLE
-# include "dip_switch.h"
+ #include "dip_switch.h"
+#endif
+
+
+#ifdef WEBUSB_ENABLE
+# include "webusb.h"
+#endif
+
+#ifdef ORYX_ENABLE
+# include "oryx.h"
#endif
#ifdef DYNAMIC_MACRO_ENABLE
-# include "process_dynamic_macro.h"
+ #include "process_dynamic_macro.h"
#endif
#ifdef DYNAMIC_KEYMAP_ENABLE
@@ -196,6 +205,7 @@ extern layer_state_t layer_state;
# include "wpm.h"
#endif
+
#ifdef USBPD_ENABLE
# include "usbpd.h"
#endif
@@ -243,3 +253,6 @@ bool led_update_user(led_t led_state);
bool led_update_kb(led_t led_state);
void api_send_unicode(uint32_t unicode);
+
+bool webusb_receive_kb(uint8_t *data, uint8_t length);
+bool webusb_receive_user(uint8_t *data, uint8_t length);