aboutsummaryrefslogtreecommitdiffstats
path: root/src/hid.h
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2022-12-16 20:31:06 +0100
committerLouis Burda <quent.burda@gmail.com>2022-12-16 20:31:06 +0100
commit8e8c972cbec56d8de31847981149cde4a8fc16cd (patch)
tree3f81fbb17a9e8338bf9b70f3e2059da50aebceca /src/hid.h
parentcbb0ac4dac395ea287cf5e7cc211f81aef16e78f (diff)
downloadsxkbd-8e8c972cbec56d8de31847981149cde4a8fc16cd.tar.gz
sxkbd-8e8c972cbec56d8de31847981149cde4a8fc16cd.zip
Add stdio command interface, matrix syncing and basic evaluation
Diffstat (limited to 'src/hid.h')
-rw-r--r--src/hid.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/hid.h b/src/hid.h
index 9bb7ae6..65efb01 100644
--- a/src/hid.h
+++ b/src/hid.h
@@ -1,4 +1,8 @@
#pragma once
+#include <stdbool.h>
+#include <stdint.h>
+
void hid_init(void);
+bool hid_gen_report(uint8_t *keycode);
void hid_task(void);