jspencer
Joined: 22 Dec 2003 Posts: 57 Location: Boise, ID USA
|
|
Posted: Tue Aug 15, 2006 3:16 pm |
|
|
Don't hold me to this because I am not totally sure, but in the usb_desc_xxx.h file there should be some lines that look something like this:
Code: |
const char USB_DEVICE_DESC[USB_DESC_DEVICE_LEN] ={
//starts of with device configuration. only one possible
USB_DESC_DEVICE_LEN, //the length of this report ==1
0x01, //the constant DEVICE (DEVICE 0x01) ==2
0x10,0x01, //usb version in bcd
|
This line is the one that will need to be changed: 0x10,0x01, //usb version in bcd
jspencer |
|