diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-15 23:16:00 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-15 23:16:00 -0600 |
commit | 7c30fe0be98a3028964d437f5c31cc968fbf9755 (patch) | |
tree | 36047161fe75349acac0e179b8010205a7fe08bb /usbkeyboard.c | |
parent | d297d8ec1f5bac1015c53dfe169d2ce1a838b007 (diff) |
wip
Diffstat (limited to 'usbkeyboard.c')
-rw-r--r-- | usbkeyboard.c | 15 |
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] + } +} + |