Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/targets/f7/ble_glue/hid_service.h')
-rw-r--r--firmware/targets/f7/ble_glue/hid_service.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/firmware/targets/f7/ble_glue/hid_service.h b/firmware/targets/f7/ble_glue/hid_service.h
new file mode 100644
index 00000000..ed1394be
--- /dev/null
+++ b/firmware/targets/f7/ble_glue/hid_service.h
@@ -0,0 +1,23 @@
+#pragma once
+
+#include <stdint.h>
+#include <stdbool.h>
+
+#define HID_SVC_REPORT_MAP_MAX_LEN (120)
+#define HID_SVC_REPORT_MAX_LEN (9)
+#define HID_SVC_BOOT_KEYBOARD_INPUT_REPORT_MAX_LEN (8)
+#define HID_SVC_REPORT_REF_LEN (2)
+#define HID_SVC_INFO_LEN (4)
+#define HID_SVC_CONTROL_POINT_LEN (1)
+
+void hid_svc_start();
+
+void hid_svc_stop();
+
+bool hid_svc_is_started();
+
+bool hid_svc_update_report_map(uint8_t* data, uint16_t len);
+
+bool hid_svc_update_input_report(uint8_t* data, uint16_t len);
+
+bool hid_svc_update_info(uint8_t* data, uint16_t len);