diff options
| author | Dien-Nhung Nguyen-Phu <kein@kienlab.com> | 2024-07-11 21:05:17 +0700 |
|---|---|---|
| committer | Dien-Nhung Nguyen-Phu <kein@kienlab.com> | 2024-07-11 22:18:56 +0700 |
| commit | 4f3b6f4283e0240060c04a137175cacfb385dc16 (patch) | |
| tree | 08678550d8577f9c30a5868dc5ae749c22de1d3e /src/usb/usb.h | |
| parent | 515c8a8eb9fec5f6992db7f5cf9b9c8bdb539f46 (diff) | |
usb: handle device request and route to interfaces
Diffstat (limited to 'src/usb/usb.h')
| -rw-r--r-- | src/usb/usb.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/usb/usb.h b/src/usb/usb.h new file mode 100644 index 0000000..5946daf --- /dev/null +++ b/src/usb/usb.h @@ -0,0 +1,8 @@ +#ifndef __USB_H__ +#define __USB_H__ + +#include <stdint.h> + +void usb_start(); + +#endif /* __USB_H__ */ |