3 Copyright (C) Dean Camera, 2010.
5 dean [at] fourwalledcubicle [dot] com
10 Copyright 2010 Dean Camera (dean [at] fourwalledcubicle [dot] com)
12 Permission to use, copy, modify, distribute, and sell this
13 software and its documentation for any purpose is hereby granted
14 without fee, provided that the above copyright notice appear in
15 all copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
21 The author disclaim all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
33 * USB Device Descriptors, for library use when in USB device mode. Descriptors are special
34 * computer-readable structures which the host requests upon device enumeration, to determine
35 * the device's capabilities and functions.
38 #include "Descriptors.h"
40 /* On some devices, there is a factory set internal serial number which can be automatically sent to the host as
41 * the device's serial number when the Device Descriptor's .SerialNumStrIndex entry is set to USE_INTERNAL_SERIAL.
42 * This allows the host to track a device across insertions on different ports, allowing them to retain allocated
43 * resources like COM port numbers and drivers. On demos using this feature, give a warning on unsupported devices
44 * so that the user can supply their own serial number descriptor instead or remove the USE_INTERNAL_SERIAL value
45 * from the Device Descriptor (forcing the host to generate a serial number for each device from the VID, PID and
48 #if (USE_INTERNAL_SERIAL == NO_DESCRIPTOR)
49 #warning USE_INTERNAL_SERIAL is not available on this AVR - please manually construct a device serial descriptor.
52 /** HID class report descriptor. This is a special descriptor constructed with values from the
53 * USBIF HID class specification to describe the reports and capabilities of the HID device. This
54 * descriptor is parsed by the host and its contents used to determine what data (and in what encoding)
55 * the device will send, and what it may be sent back from the host. Refer to the HID specification for
56 * more details on HID report descriptors.
58 USB_Descriptor_HIDReport_Datatype_t PROGMEM GenericReport
[] =
60 0x06, 0x9c, 0xff, /* Usage Page (Vendor Defined) */
61 0x09, 0x01, /* Usage (Vendor Defined) */
62 0xa1, 0x01, /* Collection (Vendor Defined) */
63 0x09, 0x02, /* Usage (Vendor Defined) */
64 0x75, 0x08, /* Report Size (8) */
65 0x95, GENERIC_REPORT_SIZE
, /* Report Count (GENERIC_REPORT_SIZE) */
66 0x15, 0x80, /* Logical Minimum (-128) */
67 0x25, 0x7F, /* Logical Maximum (127) */
68 0x81, 0x02, /* Input (Data, Variable, Absolute) */
69 0x09, 0x03, /* Usage (Vendor Defined) */
70 0x75, 0x08, /* Report Size (8) */
71 0x95, GENERIC_REPORT_SIZE
, /* Report Count (GENERIC_REPORT_SIZE) */
72 0x15, 0x00, /* Logical Minimum (0) */
73 0x25, 0xff, /* Logical Maximum (255) */
74 0x91, 0x02, /* Output (Data, Variable, Absolute) */
75 0xc0 /* End Collection */
78 /** Device descriptor structure. This descriptor, located in FLASH memory, describes the overall
79 * device characteristics, including the supported USB version, control endpoint size and the
80 * number of device configurations. The descriptor is read out by the USB host when the enumeration
83 USB_Descriptor_Device_t PROGMEM DeviceDescriptor
=
85 .Header
= {.Size
= sizeof(USB_Descriptor_Device_t
), .Type
= DTYPE_Device
},
87 .USBSpecification
= VERSION_BCD(01.10),
88 .Class
= USB_CSCP_NoDeviceClass
,
89 .SubClass
= USB_CSCP_NoDeviceSubclass
,
90 .Protocol
= USB_CSCP_NoDeviceProtocol
,
92 .Endpoint0Size
= FIXED_CONTROL_ENDPOINT_SIZE
,
96 .ReleaseNumber
= VERSION_BCD(00.01),
98 .ManufacturerStrIndex
= 0x01,
99 .ProductStrIndex
= 0x02,
100 .SerialNumStrIndex
= USE_INTERNAL_SERIAL
,
102 .NumberOfConfigurations
= FIXED_NUM_CONFIGURATIONS
105 /** Configuration descriptor structure. This descriptor, located in FLASH memory, describes the usage
106 * of the device in one of its supported configurations, including information about any device interfaces
107 * and endpoints. The descriptor is read out by the USB host during the enumeration process when selecting
108 * a configuration so that the host may correctly communicate with the USB device.
110 USB_Descriptor_Configuration_t PROGMEM ConfigurationDescriptor
=
114 .Header
= {.Size
= sizeof(USB_Descriptor_Configuration_Header_t
), .Type
= DTYPE_Configuration
},
116 .TotalConfigurationSize
= sizeof(USB_Descriptor_Configuration_t
),
117 .TotalInterfaces
= 2,
119 .ConfigurationNumber
= 1,
120 .ConfigurationStrIndex
= NO_DESCRIPTOR
,
122 .ConfigAttributes
= (USB_CONFIG_ATTR_BUSPOWERED
| USB_CONFIG_ATTR_SELFPOWERED
),
124 .MaxPowerConsumption
= USB_CONFIG_POWER_MA(100)
129 .Header
= {.Size
= sizeof(USB_Descriptor_Interface_t
), .Type
= DTYPE_Interface
},
131 .InterfaceNumber
= 0,
132 .AlternateSetting
= 0,
136 .Class
= MS_CSCP_MassStorageClass
,
137 .SubClass
= MS_CSCP_SCSITransparentSubclass
,
138 .Protocol
= MS_CSCP_BulkOnlyTransportProtocol
,
140 .InterfaceStrIndex
= NO_DESCRIPTOR
145 .Header
= {.Size
= sizeof(USB_Descriptor_Endpoint_t
), .Type
= DTYPE_Endpoint
},
147 .EndpointAddress
= (ENDPOINT_DESCRIPTOR_DIR_IN
| MASS_STORAGE_IN_EPNUM
),
148 .Attributes
= (EP_TYPE_BULK
| ENDPOINT_ATTR_NO_SYNC
| ENDPOINT_USAGE_DATA
),
149 .EndpointSize
= MASS_STORAGE_IO_EPSIZE
,
150 .PollingIntervalMS
= 0x01
153 .MS_DataOutEndpoint
=
155 .Header
= {.Size
= sizeof(USB_Descriptor_Endpoint_t
), .Type
= DTYPE_Endpoint
},
157 .EndpointAddress
= (ENDPOINT_DESCRIPTOR_DIR_OUT
| MASS_STORAGE_OUT_EPNUM
),
158 .Attributes
= (EP_TYPE_BULK
| ENDPOINT_ATTR_NO_SYNC
| ENDPOINT_USAGE_DATA
),
159 .EndpointSize
= MASS_STORAGE_IO_EPSIZE
,
160 .PollingIntervalMS
= 0x01
165 .Header
= {.Size
= sizeof(USB_Descriptor_Interface_t
), .Type
= DTYPE_Interface
},
167 .InterfaceNumber
= 1,
168 .AlternateSetting
= 0,
172 .Class
= HID_CSCP_HIDClass
,
173 .SubClass
= HID_CSCP_NonBootSubclass
,
174 .Protocol
= HID_CSCP_NonBootProtocol
,
176 .InterfaceStrIndex
= NO_DESCRIPTOR
181 .Header
= {.Size
= sizeof(USB_HID_Descriptor_HID_t
), .Type
= HID_DTYPE_HID
},
183 .HIDSpec
= VERSION_BCD(01.11),
185 .TotalReportDescriptors
= 1,
186 .HIDReportType
= HID_DTYPE_Report
,
187 .HIDReportLength
= sizeof(GenericReport
)
190 .HID_ReportINEndpoint
=
192 .Header
= {.Size
= sizeof(USB_Descriptor_Endpoint_t
), .Type
= DTYPE_Endpoint
},
194 .EndpointAddress
= (ENDPOINT_DESCRIPTOR_DIR_IN
| GENERIC_IN_EPNUM
),
195 .Attributes
= (EP_TYPE_INTERRUPT
| ENDPOINT_ATTR_NO_SYNC
| ENDPOINT_USAGE_DATA
),
196 .EndpointSize
= GENERIC_EPSIZE
,
197 .PollingIntervalMS
= 0x01
201 /** Language descriptor structure. This descriptor, located in FLASH memory, is returned when the host requests
202 * the string descriptor with index 0 (the first index). It is actually an array of 16-bit integers, which indicate
203 * via the language ID table available at USB.org what languages the device supports for its string descriptors.
205 USB_Descriptor_String_t PROGMEM LanguageString
=
207 .Header
= {.Size
= USB_STRING_LEN(1), .Type
= DTYPE_String
},
209 .UnicodeString
= {LANGUAGE_ID_ENG
}
212 /** Manufacturer descriptor string. This is a Unicode string containing the manufacturer's details in human readable
213 * form, and is read out upon request by the host when the appropriate string ID is requested, listed in the Device
216 USB_Descriptor_String_t PROGMEM ManufacturerString
=
218 .Header
= {.Size
= USB_STRING_LEN(11), .Type
= DTYPE_String
},
220 .UnicodeString
= L
"Dean Camera"
223 /** Product descriptor string. This is a Unicode string containing the product's details in human readable form,
224 * and is read out upon request by the host when the appropriate string ID is requested, listed in the Device
227 USB_Descriptor_String_t PROGMEM ProductString
=
229 .Header
= {.Size
= USB_STRING_LEN(22), .Type
= DTYPE_String
},
231 .UnicodeString
= L
"Temperature Datalogger"
234 /** This function is called by the library when in device mode, and must be overridden (see library "USB Descriptors"
235 * documentation) by the application code so that the address and size of a requested descriptor can be given
236 * to the USB library. When the device receives a Get Descriptor request on the control endpoint, this function
237 * is called so that the descriptor details can be passed back and the appropriate descriptor sent back to the
240 uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue
,
241 const uint8_t wIndex
,
242 const void** const DescriptorAddress
)
244 const uint8_t DescriptorType
= (wValue
>> 8);
245 const uint8_t DescriptorNumber
= (wValue
& 0xFF);
247 const void* Address
= NULL
;
248 uint16_t Size
= NO_DESCRIPTOR
;
250 switch (DescriptorType
)
253 Address
= &DeviceDescriptor
;
254 Size
= sizeof(USB_Descriptor_Device_t
);
256 case DTYPE_Configuration
:
257 Address
= &ConfigurationDescriptor
;
258 Size
= sizeof(USB_Descriptor_Configuration_t
);
261 switch (DescriptorNumber
)
264 Address
= &LanguageString
;
265 Size
= pgm_read_byte(&LanguageString
.Header
.Size
);
268 Address
= &ManufacturerString
;
269 Size
= pgm_read_byte(&ManufacturerString
.Header
.Size
);
272 Address
= &ProductString
;
273 Size
= pgm_read_byte(&ProductString
.Header
.Size
);
279 Address
= &ConfigurationDescriptor
.HID_GenericHID
;
280 Size
= sizeof(USB_HID_Descriptor_HID_t
);
282 case HID_DTYPE_Report
:
283 Address
= &GenericReport
;
284 Size
= sizeof(GenericReport
);
288 *DescriptorAddress
= Address
;