123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- #ifndef __USBROOTHUBDES_H__
- #define __USBROOTHUBDES_H__
- static __u8 root_hub_dev_des[] = {
- 0x12,
- 0x01,
- 0x10,
- 0x01,
- 0x09,
- 0x00,
- 0x00,
- 0x08,
- 0x00,
- 0x00,
- 0x00,
- 0x00,
- 0x00,
- 0x00,
- 0x00,
- 0x01,
- 0x00,
- 0x01,
- }
- static __u8 root_hub_config_des[] = {
- 0x09,
- 0x02,
- 0x19,
- 0x00,
- 0x01,
- 0x01,
- 0x00,
- 0x40,
- 0x00,
-
- 0x09,
- 0x04,
- 0x00,
- 0x00,
- 0x01,
- 0x09,
- 0x00,
- 0x00,
- 0x00,
-
- 0x07,
- 0x05,
- 0x81,
- 0x03,
- 0x02,
- 0x00,
- 0xff,
- }
- #ifdef WANT_USB_ROOT_HUB_HUB_DES
- static unsigned char root_hub_hub_des[] = {
- 0x09,
- 0x29,
- 0x02,
- 0x00,
- 0x00,
- 0x01,
- 0x00,
- 0x00,
- 0xff,
- }
- #endif
- static unsigned char root_hub_str_index0[] = {
- 0x04,
- 0x03,
- 0x09,
- 0x04,
- }
- static unsigned char root_hub_str_index1[] = {
- 32,
- 0x03,
- 'U',
- 0,
- '-',
- 0,
- 'B',
- 0,
- 'o',
- 0,
- 'o',
- 0,
- 't',
- 0,
- ' ',
- 0,
- 'R',
- 0,
- 'o',
- 0,
- 'o',
- 0,
- 't',
- 0,
- ' ',
- 0,
- 'H',
- 0,
- 'u',
- 0,
- 'b',
- 0,
- }
- #endif
|