diff options
Diffstat (limited to 'drivers/usb/usb.h')
-rw-r--r-- | drivers/usb/usb.h | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/drivers/usb/usb.h b/drivers/usb/usb.h index a7b027bf2..d1381c107 100644 --- a/drivers/usb/usb.h +++ b/drivers/usb/usb.h @@ -85,9 +85,22 @@ /* * USB Packet IDs (PIDs) */ -#define USB_PID_OUT 0xe1 -#define USB_PID_IN 0x69 -#define USB_PID_SETUP 0x2d +#define USB_PID_UNDEF_0 0xf0 +#define USB_PID_OUT 0xe1 +#define USB_PID_ACK 0xd2 +#define USB_PID_DATA0 0xc3 +#define USB_PID_UNDEF_4 0xb4 +#define USB_PID_SOF 0xa5 +#define USB_PID_UNDEF_6 0x96 +#define USB_PID_UNDEF_7 0x87 +#define USB_PID_UNDEF_8 0x78 +#define USB_PID_IN 0x69 +#define USB_PID_NAK 0x5a +#define USB_PID_DATA1 0x4b +#define USB_PID_PREAMBLE 0x3c +#define USB_PID_SETUP 0x2d +#define USB_PID_STALL 0x1e +#define USB_PID_UNDEF_F 0x0f /* * Standard requests |