![]() |
LPCOpen Platform
LPCOpen Platform for NXP LPC Microcontrollers
|
#include "Descriptors.h"
Go to the source code of this file.
Functions | |
uint16_t | CALLBACK_USB_GetDescriptor (const uint16_t wValue, const uint8_t wIndex, const void **const DescriptorAddress) |
USB Get descriptor callback function. | |
USB_Descriptor_Configuration_t ConfigurationDescriptor |
Configuration descriptor structure. This descriptor, located in FLASH memory, describes the usage of the device in one of its supported configurations, including information about any device interfaces and endpoints. The descriptor is read out by the USB host during the enumeration process when selecting a configuration so that the host may correctly communicate with the USB device.
Definition at line 81 of file Descriptors.c.
USB_Descriptor_Device_t DeviceDescriptor |
Device descriptor structure. This descriptor, located in FLASH memory, describes the overall device characteristics, including the supported USB version, control endpoint size and the number of device configurations. The descriptor is read out by the USB host when the enumeration process begins.
Definition at line 55 of file Descriptors.c.
USB_Descriptor_HIDReport_Datatype_t KeyboardReport[] |
HID class report descriptor. This is a special descriptor constructed with values from the USBIF HID class specification to describe the reports and capabilities of the HID device. This descriptor is parsed by the host and its contents used to determine what data (and in what encoding) the device will send, and what it may be sent back from the host. Refer to the HID specification for more details on HID report descriptors.
Definition at line 43 of file Descriptors.c.
uint8_t LanguageString[] |
Language descriptor structure. This descriptor, located in FLASH memory, is returned when the host requests the string descriptor with index 0 (the first index). It is actually an array of 16-bit integers, which indicate via the language ID table available at USB.org what languages the device supports for its string descriptors.
Definition at line 136 of file Descriptors.c.
USB_Descriptor_String_t* LanguageStringPtr = (USB_Descriptor_String_t *) LanguageString |
Definition at line 141 of file Descriptors.c.
uint8_t ManufacturerString[] |
Manufacturer descriptor string. This is a Unicode string containing the manufacturer's details in human readable form, and is read out upon request by the host when the appropriate string ID is requested, listed in the Device Descriptor.
Definition at line 147 of file Descriptors.c.
USB_Descriptor_String_t* ManufacturerStringPtr = (USB_Descriptor_String_t *) ManufacturerString |
Definition at line 154 of file Descriptors.c.
uint8_t ProductString[] |
Product descriptor string. This is a Unicode string containing the product's details in human readable form, and is read out upon request by the host when the appropriate string ID is requested, listed in the Device Descriptor.
Definition at line 160 of file Descriptors.c.
USB_Descriptor_String_t* ProductStringPtr = (USB_Descriptor_String_t *) ProductString |
Definition at line 187 of file Descriptors.c.