usb: handle device request and route to interfaces

This commit is contained in:
Dien-Nhung Nguyen-Phu
2024-07-11 21:05:17 +07:00
parent 515c8a8eb9
commit 4f3b6f4283
8 changed files with 629 additions and 0 deletions

8
src/usb/usb.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef __USB_H__
#define __USB_H__
#include <stdint.h>
void usb_start();
#endif /* __USB_H__ */