- Add some comments about the origin of some USB descriptors.

MFC after:	7 days
This commit is contained in:
Hans Petter Selasky 2011-06-23 10:35:45 +00:00
parent dcf496e844
commit df142785d5
3 changed files with 10 additions and 1 deletions

View File

@ -95,7 +95,12 @@ USB_MAKE_STRING_DESC(STRING_AUDIO_PRODUCT, string_audio_product);
/* prototypes */
/* Audio Mixer description structures */
/*
* Audio Mixer description structures
*
* Some of the audio descriptors were dumped
* from a Creative Labs USB audio device.
*/
static const uint8_t audio_raw_desc_0[] = {
0x0a, 0x24, 0x01, 0x00, 0x01, 0xa9, 0x00, 0x02,

View File

@ -94,6 +94,8 @@ static const struct usb_temp_interval keyboard_intr_interval = {
.bInterval[USB_SPEED_HIGH] = 2 * 8,
};
/* The following HID descriptor was dumped from a HP keyboard. */
static uint8_t keyboard_hid_descriptor[] = {
0x05, 0x01, 0x09, 0x06, 0xa1, 0x01, 0x05, 0x07,
0x19, 0xe0, 0x29, 0xe7, 0x15, 0x00, 0x25, 0x01,

View File

@ -82,6 +82,8 @@ USB_MAKE_STRING_DESC(STRING_PRODUCT, string_product);
/* prototypes */
/* The following HID descriptor was dumped from a HP mouse. */
static uint8_t mouse_hid_descriptor[] = {
0x05, 0x01, 0x09, 0x02, 0xa1, 0x01, 0x09, 0x01,
0xa1, 0x00, 0x05, 0x09, 0x19, 0x01, 0x29, 0x03,