summaryrefslogtreecommitdiff
path: root/tmk_core/common/webusb.h
diff options
context:
space:
mode:
authorFlorian Didron <fd@librem.one>2019-11-05 19:02:07 +0900
committerDrashna Jael're <drashna@live.com>2019-12-05 16:03:54 -0800
commitafdba6115a5bdfa87f634bbf6c41402caaefa1b5 (patch)
treeabae48d2dbbe0229902e88059ff87dd6f7f4b9f9 /tmk_core/common/webusb.h
parent39c60356573fe2c98df3f1921df3935aeeb02780 (diff)
feat: adds pairing key
Diffstat (limited to 'tmk_core/common/webusb.h')
-rw-r--r--tmk_core/common/webusb.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/tmk_core/common/webusb.h b/tmk_core/common/webusb.h
new file mode 100644
index 0000000000..35d9610fc9
--- /dev/null
+++ b/tmk_core/common/webusb.h
@@ -0,0 +1,24 @@
+#pragma once
+
+#include <stdint.h>
+#include <stdbool.h>
+
+void webusb_receive(uint8_t *data, uint8_t length);
+void webusb_send(uint8_t *data, uint8_t length);
+void webusb_error(uint8_t);
+void webusb_set_pairing_state(void);
+
+typedef struct{
+ bool paired;
+ bool pairing;
+} webusb_state_t;
+
+extern webusb_state_t webusb_state;
+
+enum Webusb_Status_Code {
+ WEBUSB_STATUS_NOT_PAIRED = -1,
+ WEBUSB_STATUS_OK,
+ WEBUSB_STATUS_UNKNOWN_COMMAND,
+};
+
+