summaryrefslogtreecommitdiff
path: root/usbkeyboard.c
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-09-15 23:16:00 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-09-15 23:16:00 -0600
commit7c30fe0be98a3028964d437f5c31cc968fbf9755 (patch)
tree36047161fe75349acac0e179b8010205a7fe08bb /usbkeyboard.c
parentd297d8ec1f5bac1015c53dfe169d2ce1a838b007 (diff)
wip
Diffstat (limited to 'usbkeyboard.c')
-rw-r--r--usbkeyboard.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/usbkeyboard.c b/usbkeyboard.c
new file mode 100644
index 0000000..436610c
--- /dev/null
+++ b/usbkeyboard.c
@@ -0,0 +1,15 @@
+void usbkeyboard_send_char(uint32_t ch) {
+}
+
+char
+
+enum {
+ IFACE_KEYBOARD = 0
+};
+
+void usbkeyboard_task(void) {
+ if (tud_hid_n_ready(0)) {
+ uint8_t keycode[6]
+ }
+}
+