Microchip® Advanced Software Framework

 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages

The following structures provide the USB device descriptors required for USB Device with a single interface HID keyboard.

It is ready to use and do not require more definition.

Data Structures

struct  udc_desc_t
 Structure for USB Device Configuration Descriptor. More...
 

Macros

#define UDI_HID_KBD_EP_IN   (1 | USB_EP_DIR_IN)
 Endpoint number used by HID keyboard interface. More...
 
#define UDI_HID_KBD_IFACE_NUMBER   0
 Interface number. More...
 
#define USB_DEVICE_EP_CTRL_SIZE   8
 Control endpoint size. More...
 
#define USB_DEVICE_NB_INTERFACE   1
 Only one interface for this device. More...
 

Variables

COMPILER_WORD_ALIGNED
UDC_DESC_STORAGE udc_desc_t 
udc_desc
 USB Device Configuration Descriptor filled for FS and HS. More...
 
COMPILER_WORD_ALIGNED
UDC_DESC_STORAGE
usb_dev_desc_t 
udc_device_desc
 USB Device Descriptor. More...
 

UDC structures which contains all USB Device definitions

UDC_DESC_STORAGE udi_api_tudi_apis [USB_DEVICE_NB_INTERFACE]
 Associate an UDI for each USB interface. More...
 
UDC_DESC_STORAGE udc_config_speed_t udc_config_fshs [1]
 Add UDI with USB Descriptors FS & HS. More...
 
UDC_DESC_STORAGE udc_config_t udc_config
 Add all information about USB Device in global structure for UDC. More...
 

UDD Configuration

#define USB_DEVICE_MAX_EP   1
 1 endpoint used by HID keyboard standard interface More...
 

#define UDI_HID_KBD_EP_IN   (1 | USB_EP_DIR_IN)

Endpoint number used by HID keyboard interface.

#define UDI_HID_KBD_IFACE_NUMBER   0

Interface number.

#define USB_DEVICE_EP_CTRL_SIZE   8

Control endpoint size.

#define USB_DEVICE_MAX_EP   1

1 endpoint used by HID keyboard standard interface

#define USB_DEVICE_NB_INTERFACE   1

Only one interface for this device.

Initial value:
= {
.confdev_lsfs = &udc_device_desc,
.conf_lsfs = udc_config_fshs,
}
UDC_DESC_STORAGE udc_config_speed_t udc_config_fshs[1]
Definition: udi_phdc_desc.c:133
COMPILER_WORD_ALIGNED UDC_DESC_STORAGE usb_dev_desc_t udc_device_desc
INDENT-OFF.
Definition: udi_composite_desc.c:52

Add all information about USB Device in global structure for UDC.

Global variables of USB Device Descriptor and UDI links.

Initial value:
= {{
}}
Standard USB configuration descriptor structure.
Definition: usb_protocol.h:410
UDC_DESC_STORAGE udi_api_t * udi_apis[USB_DEVICE_NB_INTERFACE]
Associate an UDI for each USB interface.
Definition: udi_composite_desc.c:143
#define UDC_DESC_STORAGE
Defines the memory's location of USB descriptors.
Definition: udc_desc.h:70
COMPILER_WORD_ALIGNED UDC_DESC_STORAGE udc_desc_t udc_desc
Definition: udi_phdc_desc.c:109

Add UDI with USB Descriptors FS & HS.

Initial value:
= {
.conf.bLength = sizeof(usb_conf_desc_t),
.conf.bDescriptorType = USB_DT_CONFIGURATION,
.conf.wTotalLength = LE16(sizeof(udc_desc_t)),
.conf.bNumInterfaces = USB_DEVICE_NB_INTERFACE,
.conf.bConfigurationValue = 1,
.conf.iConfiguration = 0,
.conf.bmAttributes = USB_CONFIG_ATTR_MUST_SET | USB_DEVICE_ATTR,
.hid_kbd = UDI_HID_KBD_DESC,
}
Definition: usb_protocol.h:191
#define USB_CONFIG_ATTR_MUST_SET
Must always be set.
Definition: usb_protocol.h:422
Standard USB configuration descriptor structure.
Definition: usb_protocol.h:410
#define USB_DEVICE_ATTR
Definition: common/services/usb/class/hid/dual/mouse/example/conf_usb.h:53
#define USB_DEVICE_POWER
Definition: common/services/usb/class/hid/dual/mouse/example/conf_usb.h:52
#define UDI_HID_KBD_DESC
Content of HID keyboard interface descriptor for all speed.
Definition: udi_hid_kbd.h:89
#define USB_CONFIG_MAX_POWER(ma)
Max power in mA.
Definition: usb_protocol.h:427
#define USB_DEVICE_NB_INTERFACE
Only one interface for this device.
Definition: udi_hid_kbd_desc.c:56
#define LE16(x)
Definition: compiler.h:773
Structure for USB Device Configuration Descriptor.
Definition: udi_composite_desc.c:100

USB Device Configuration Descriptor filled for FS and HS.

Initial value:
= {
.bLength = sizeof(usb_dev_desc_t),
.bDescriptorType = USB_DT_DEVICE,
.bcdUSB = LE16(USB_V2_0),
.bDeviceClass = 0,
.bDeviceSubClass = 0,
.bDeviceProtocol = 0,
.bMaxPacketSize0 = USB_DEVICE_EP_CTRL_SIZE,
.idVendor = LE16(USB_DEVICE_VENDOR_ID),
.idProduct = LE16(USB_DEVICE_PRODUCT_ID),
.bcdDevice = LE16((USB_DEVICE_MAJOR_VERSION << 8)
.iManufacturer = 0,
.iProduct = 0,
.iSerialNumber = 0,
.bNumConfigurations = 1
}
#define USB_V2_0
Value for field bcdUSB.
Definition: usb_protocol.h:56
#define USB_DEVICE_MINOR_VERSION
Definition: common/services/usb/class/hid/dual/mouse/example/conf_usb.h:51
Standard USB device descriptor structure.
Definition: usb_protocol.h:313
#define USB_DEVICE_EP_CTRL_SIZE
USB Device low level configuration When only one interface is used, these configurations are defined ...
Definition: common/services/usb/class/composite/device/example4/conf_usb.h:107
Definition: usb_protocol.h:190
#define USB_DEVICE_VENDOR_ID
USB Device Configuration.
Definition: common/services/usb/class/hid/dual/mouse/example/conf_usb.h:48
#define USB_DEVICE_MAJOR_VERSION
Definition: common/services/usb/class/hid/dual/mouse/example/conf_usb.h:50
#define LE16(x)
Definition: compiler.h:773
#define USB_DEVICE_PRODUCT_ID
Definition: common/services/usb/class/hid/dual/mouse/example/conf_usb.h:49

USB Device Descriptor.

Pointer on the selected speed device configuration.

Initial value:
= {
}
UDC_DESC_STORAGE udi_api_t udi_api_hid_kbd
Global structure which contains standard UDI interface for UDC.
Definition: udi_hid_kbd.c:60

Associate an UDI for each USB interface.