diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-16 02:49:13 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-16 02:49:13 -0600 |
commit | 93f054683dd5fc5b79541f4922cb34a38cb5c341 (patch) | |
tree | 5fed989181dbf1c7714c6c4fe7b910344e8ba30d /usb_keyboard.h | |
parent | 7c30fe0be98a3028964d437f5c31cc968fbf9755 (diff) |
keyboard hello world?
Diffstat (limited to 'usb_keyboard.h')
-rw-r--r-- | usb_keyboard.h | 10 |
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_ */ |