aboutsummaryrefslogtreecommitdiff
path: root/src/usb/usb.h
diff options
context:
space:
mode:
authorDien-Nhung Nguyen-Phu <kein@kienlab.com>2024-07-11 21:05:17 +0700
committerDien-Nhung Nguyen-Phu <kein@kienlab.com>2024-07-11 22:18:56 +0700
commit4f3b6f4283e0240060c04a137175cacfb385dc16 (patch)
tree08678550d8577f9c30a5868dc5ae749c22de1d3e /src/usb/usb.h
parent515c8a8eb9fec5f6992db7f5cf9b9c8bdb539f46 (diff)
usb: handle device request and route to interfaces
Diffstat (limited to 'src/usb/usb.h')
-rw-r--r--src/usb/usb.h8
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__ */