summaryrefslogtreecommitdiff
path: root/usb_keyboard.h
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-09-16 02:49:13 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-09-16 02:49:13 -0600
commit93f054683dd5fc5b79541f4922cb34a38cb5c341 (patch)
tree5fed989181dbf1c7714c6c4fe7b910344e8ba30d /usb_keyboard.h
parent7c30fe0be98a3028964d437f5c31cc968fbf9755 (diff)
keyboard hello world?
Diffstat (limited to 'usb_keyboard.h')
-rw-r--r--usb_keyboard.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/usb_keyboard.h b/usb_keyboard.h
new file mode 100644
index 0000000..9460feb
--- /dev/null
+++ b/usb_keyboard.h
@@ -0,0 +1,10 @@
+#ifndef _USB_KEYBOARD_H_
+#define _USB_KEYBOARD_H_
+
+void usb_keyboard_init(void);
+void usb_keyboard_task(void);
+
+bool usb_keyboard_send_char(uint32_t ch);
+bool usb_keyboard_is_flushed(void);
+
+#endif /* _USB_KEYBOARD_H_ */